• Home
  • Sitemap
  • Contact us
Int J Fire Sci Eng Search

CLOSE


Int J Fire Sci Eng > Volume 39(4); 2025 > Article
Choi, Yoon, and Jung: A Study on Performance Analysis of Electric Vehicle Fire and Smoke Object Detection Based on Different Labeling Methods Using the YOLOv11 Model

Abstract

This study evaluated the performance of YOLOv11 models trained to detect electric vehicle (EV) fires and smoke emission using bounding-box and instance segmentation annotations. Comprehensive experiments were conducted across all YOLOv11 variants (n, s, m, l, x) to analyze the trade-offs between speed and detection accuracy. The models were trained on a dataset consisting of 3,000 images depicting EV fires and smoke, which were annotated using Roboflow’s polygon tool under identical training conditions with consistent hardware and hyperparameters. The evaluation was based on precision, recall, and mean average precision at an intersection over union threshold of 0.50 (mAP50), as well as mAP50-95, F1-score, and inference speed in frames per second. The experimental results showed distinct advantages for each annotation method. Bounding-box models demonstrated superior inference speed, with the YOLOv11n model achieving the highest speed at 44.62 FPS. This makes these methods optimal for real-time EV fire monitoring applications. By contrast, segmentation models showed significantly higher accuracy in detecting objects with irregular boundaries, particularly smoke plumes. The YOLOv11m model with segmentation achieved optimal performance with a mAP50 of 0.7952 and an F1-score of 0.7510. The segmentation approach proved particularly effective for smoke detection, where bounding-box annotation frequently failed to accurately capture the irregular boundaries of smoke in an image, which resulted in detection failures for these critical fire indicators. These findings demonstrate that segmentation labeling is more effective in achieving accurate early detection and precise localization of EV fires and smoke emissions, despite the computational trade-off. The superior boundary definition capability of the segmentation approach is crucial for reliable smoke detection, which provides an important early warning of thermal runaway events in EV batteries. Future studies will focus on expanding the diversity of the dataset used to train the models by applying generative AI techniques such as GAN and diffusion models to further enhance detection robustness across varied fire scenarios.

1. Introduction

Amid growing societal concerns regarding the accelerating effects of climate change and the transition toward a sustainable economy, global interest in electric vehicles (EVs) has substantially increased. EVs do not produce direct emissions of environmental pollutants such as carbon dioxide (CO₂), nitrogen oxides (NOx), and particulate matter (PM), which are typically produced by internal combustion engines. Given their reliance on electricity as a primary energy source, these vehicles have attracted attention as an environmentally friendly mode of transportation, and their adoption is expected to reduce carbon emissions while concurrently lowering fuel expenditures [1,2].
Reflecting this trend, the global automotive industry is increasing production of EVs. This fundamental shift is reshaping automotive markets, which heretofore have always been based on vehicles with engines. In 2024, the market size served by the global automotive industry was valued at approximately USD 4.35998 trillion and is projected to grow to approximately USD 6.67828 trillion by 2032. This figure signifies that the compound annual growth rate (CAGR) is predicted to exhibit an average value of approximately 5.66% from 2024 to 2032. These statistics underscore the pivotal role of shifts in demand centered on eco-friendly vehicles in catalyzing market expansion According to statistics from the International Energy Agency (IEA), EVs represented approximately 18% of global sales of new cars in 2023. The national transition policies and declared targets indicate an increase to approximately 35% by 2030. This suggests a substantial expansion of the EV market share over the next decade. The Ministry of Science and Information and Communication Technology reports that the South Korean government aims to achieve a 10% global market share by 2030 via the production of 3 million EVs and 850,000 hydrogen vehicles [3]. The increased prevalence of EVs has led to a concomitant rise in the usage of lithium-ion batteries as a crucial component in EV systems. Batteries containing rare metals such as lithium, nickel, and cobalt retain partial performance even after the completion of their service life. Therefore, recycled EV batteries possess high economical value because they can be repurposed as energy storage systems (ESS) after the end of their ordinary life cycle [4]. Consequently, the development of methods for EV battery reuse and resource recovery has become a key focus of research to improve resource circulation and energy efficiency.
The accelerated adoption of EVs has precipitated a substantial surge in demand for lithium-ion batteries, raising concerns regarding their safety in road vehicles [5]. Lithium-ion batteries can provide high performance owing to their high energy density; however, thermal runaway events triggered by external impacts, overcharging, internal short circuits, and manufacturing defects remain a significant concern. These events can result in fire incidents, which are often accompanied by chain explosions. These fires pose a significant safety hazard because they engender more extensive damage than conventional fire events involving vehicles with internal combustion engines and present greater challenges during suppression. Specifically, EV battery fires exhibit rapid spreading once ignited as well as a high potential for reignition. These characteristics substantially increase the difficulty of effectively controlling such fires employing existing fire suppression equipment and response systems.
The recent, recurring occurrence of EV fire accidents accidents has the potential to undermine consumer confidence in EV safety and slow adoption rates [6,7]. These fires pose a significant safety hazard because they engender more extensive damage than conventional fire events involving vehicles with internal combustion engines and present greater challenges during suppression [5]. Consequently, there is a pressing need to develop technological solutions that can detect EV fires at an early stage and alert first responders to the danger. At present, new research is focusing on the development of AI-based fire detection systems that can perform real-time video analysis. In particular, the You Only Look Once (YOLO) algorithm has demonstrated notable efficacy in real-time object detection from image and video data owing to its high computational efficiency and fast processing speed. This algorithm has been applied in several fire detection scenarios.
This study compared and analyzed the performance of EV fire detection models by applying bounding-box and segmentation labeling techniques to the n, s, m, l, and x models of YOLOv11 to address limitations such as detection latency, low accuracy, and sensitivity to environmental variability. This approach enabled a comprehensive evaluation of their performance across models with diverse architectures. Based on this process of iterative development, we propose a model specifically optimized for EV fire detection.

2. Overview of the YOLOv11 Algorithm

2.1. YOLOv11 architecture

The graph shown in Figure 1 compares the performance and inference latency of various object detection models. Recent studies have increasingly focussed on lightweight deep learning models that simultaneously achieve high accuracy and high inference speeds in object detection based on the COCO dataset. The YOLOv11 model was developed to address this demand. Building on the existing YOLOv8 architecture, YOLOv11 improves computational efficiency and detection accuracy by introducing cross convolution with 2 × 2 kernels (C3k2) and cross-stage partial with spatial attention (C2PSA) modules. YOLOv11 demonstrated superior performance in terms of mean average precision (mAP) compared with the existing YOLOv8 model on the COCO dataset. This enhancement was achieved in conjunction with a reduction approximately 22% in the number of parameters in the entire architecture. Additionally, the inference speed of YOLOv11 was reported to have improved by about 15-20% [8,9,10]. The network is structured identically to the YOLO series, comprising backbone, neck, and head modules. At each stage of the process, architectural improvements are applied to enhance the representation of multi-scale features and detection performance for small objects. Figure 2 presents the architecture of the YOLOv11 model.
The backbone of the network extracts feature maps at multiple spatial resolutions from the input image, and the C3k2 architecture has been introduced to replace the C2f module used in YOLOv8. C3k2 is a lightweight convolution structure based on a 2 × 2 kernel, which is designed to reduce computational load while effectively preserving spatial details. This structure is based on the cross-stage partial (CSP) architecture, which uses only a portion of the input feature map for computations to enhance computational efficiency, minimize information loss, and improve detection performance for small objects [8,9].
The neck serves as an intermediate processing stage that fuses feature maps of multiple resolutions extracted from the backbone before forwarding them to the head. Both the C3k2 and C2PSA modules are applied during this process. C2PSA is an extension of the existing partial spatial attention (PSA) architecture designed to detect objects in images containing complex backgrounds and objects that are occluded by separating spatial attention and channel interaction into independent paths for parallel processing. Furthermore, the upsampled feature map is seamlessly integrated with high-resolution information to detect objects with diverse dimensions [8,9].
The head of the model predicts object positions, objectness scores, and class probabilities. This component comprises a multi-stage C3k2 block and a detection layer. The C3k2 block enhances detection sensitivity for small or densely packed objects by integrating depth-specific feature information, whereas the detection layer outputs the coordinates of the obtained bounding box in conjunction with the classification results. The head incorporates a convolution-batch normalization-sigmoid linear unit (SiLU) activation function (CBS) module to reliably perform feature map normalization and nonlinear transformation while enhancing the convergence speed of the network and the stability of the obtained predictions. During the post-processing stage, the non-maximum suppression (NMS) technique is applied to eliminate redundant predictions and enhance the reliability of the final results [8,9].

2.2. Bounding boxes and segmentation

The process of labeling plays a critical role in the detection and distinction of objects within model images. The labeling methods employed in this context include both bounding-box and segmentation labeling. Figure 3(a) shows the original image, while (b) shows the bounding-box labeling method, and (c) depicts the segmentation labeling method.
Bounding-box labeling defines the smallest rectangular area that contains an object to indicate object position and size. Its simple structure and fast labeling speed enable efficient computational processing. Therefore, this approach is the standard choice across several deep learning-based object detection frameworks, including YOLO and R-CNN variants. Nevertheless, background elements other than objects can be included within the bounding box, which can introduce unnecessary information that may influence model training [9].
By contrast, segmentation labeling delineates the position and shape of objects on a pixel-by-pixel basis to facilitate a more precise representation of their form. This method enables a distinct separation between objects and backgrounds to reduce the possibility of detection errors caused by background interference. Segmentation labeling has demonstrated the capacity to maintain high precision and accuracy even with complex input images featuring overlapping objects or environments characterized by a high density of visually similar objects [9].
Tables 1, 2 present the performance metrics of YOLOv11 using bounding-box and segmentation labeling, respectively. The YOLOv11 model utilized in this study offers five variants of different sizes, designated as n, s, m, l, and x, which are derived via compound scaling of network depth and width while preserving the integrity of the network architecture. The hierarchical depth of the representation capacity and the effective receptive field generally increases in order of n, s, m, l, and x models, resulting in progressively improved accuracy and robustness. However, this augmentation is accompanied by a proportional increase in memory utilization as well as the duration of training and inference processes. Employing bounding box labeling, the YOLOv11n model achieved mAP (box) of 78.4 with 2.7 million parameters and 17.2 billion floating-point operations (FLOPs). The most complex model, YOLOv11x, achieved an mAP of 81.3 with 58.8 million parameters and 520.2 billion FLOPs. Under segmentation labeling, YOLOv11n attained an mAP (box) of 38.9 and an mAP (mask) of 32.0, while exhibiting an inference speed of 1.8 ms in the TensorRT environment. The YOLOv11x model exhibited an mAP (box) of 54.7 and an mAP (mask) of 43.8. These findings indicate that both methods demonstrated enhanced accuracy with increasingly large models, albeit at the cost of higher computational loads and longer processing times. Therefore, careful selection of the model scale and labeling method based on application-specific requirements remains essential for practical deployment [10,11,12,13].

3. Experiment Details

3.1. Experimental setup and environment

A total of 3,000 images depicting EV fires were collected from the Roboflow platform as well as from domestic and international news articles. The collected data were used to train the EV fire detection model. Figure 4 presents representative examples from the collected dataset. The images were labelled using the Polygon Tool and the Smart Polygon (AI Labeling) features of the Roboflow platform. The Polygon Tool facilitates manual delineation of an object's outline for high-precision labeling; however, significant time is required to complete the labeling process. Conversely, the Smart Polygon tool is based on the Segment Anything Model (SAM); it spontaneously identifies the expected boundaries of an object selected by the user to reduce the time required to label images. Moreover, the initially generated mask can be subject to further refinement through additional editing.
Following labeling, all images were resized to a resolution of 640 × 640 pixels and preprocessed to enhance computational efficiency during the training and inference processes while preserving the necessary details for object detection. To evaluate the stability of the training and the generalization performance of the model, the full dataset was split into three subsets including a training dataset comprising 2,400 images (80%), validation dataset containing 300 images (10%), and testing dataset consisting of 300 images (10%).
As shown in Table 3, we utilized a specific configuration of hyperparameters and a particular hardware environment to the train the object detection model. All training and validation were performed in a CUDA 12.3 environment using PyTorch version 3.9.0. The hardware utilized for the training comprised a high-performance computing environment based on a system with an Intel® Xeon® Silver 4210 10-core central processing unit (CPU), 192 gigabytes of random access memory (RAM), and two Nvidia RTX 3090 graphics processing units (GPUs). All hyperparameters were set identically for a meaningful comparison. Stochastic gradient descent (SGD) optimization was applied according to the default configuration of YOLOv11 with a fixed learning rate of 0.01. The number of epochs was set to 300, and the batch size was set to 16 to optimize GPU utilization. The resolution of the input images was normalized to 640 × 640 pixels across all models to minimize differences in performance owing to variations in the input conditions.

3.2. Experimental results

Two object detection labeling methods were implemented using the n, s, m, l, x models of YOLOv11. Subsequently, their detection performance for images of EV fires and smoke were quantitatively evaluated and compared using both standard performance metrics and qualitative visualizations. The performance of the models was evaluated by calculating the intersection over union (IoU) threshold (τ). In this context, precision is the rate of accurate detection, recall is the detection rate among actual objects, and the F1-score is the harmonic mean of these two measures. The mAP is the mean average precision across classes, whereas the mAP50 is the mAP at τ = 0.50 and mAP50-95 is similarly the average mAP between τ = 0.50 and τ = 0.95. The speed at which the network could output inferences was measured in terms of frames per second (FPS). Tables 4, 5 respectively present performance results for the bounding-box and segmentation labeling methods of the YOLOv11-based object detection model.
The experimental results of the bounding-box labeling technique shown in Table 4 demonstrate that the YOLOv11n model achieved high accuracy with an mAP50 of 0.7736 and mAP50-95 of 0.5017 despite its lightweight architecture. Furthermore, it exhibited the highest inference speed with a frame rate of 44.6167 FPS. The YOLOv11s model attained an FPS of 42.5812 and an F1-score of 0.7622, which indicates an optimal balance between precision and speed. The YOLOv11m model demonstrated overall stable performance with an mAP50 of 0.7663, mAP50-95 of 0.4900, and F1-score of 0.7601. Among these models, the YOLOv11l model exhibited the most balanced performance between precision and recall with a precision of 0.8448, a recall of 0.7657, and an F1-score of 0.7577. This finding indicates that the model is suitable for environments that require high accuracy. By contrast, the YOLOv11x model exhibited the highest number of parameters, with an mAP50 of 0.7672 and mAP50-95 of 0.4955. However, the FPS decreased to 31.5061, which indicates that an increase in the complexity of the model does not necessarily guarantee enhanced performance. Therefore, selecting a model that effectively balances computational efficiency and accuracy is crucial.
The detection results presented in Table 5 demonstrate that the mAP values were marginally lower overall than those obtained using the bounding-box labeling method. This discrepancy can be attributed to the disparity in evaluation criteria, which is a direct consequence of the intrinsic capacity of the labeling method to accurately delineate boundaries and shapes at the pixel level. However, segmentation labeling offers distinct advantages in specific applications because it can reflect the shape and position of actual objects more accurately.
The YOLOv11s model exhibited the highest inference speed, with an mAP50 of 0.7613, mAP50-95 of 0.4375, and F1-score of 0.7557, and inference speed of 40.5783 FPS, which substantiates the applicability of this model for real-time environments. The YOLOv11l model exhibited notably high performance with a precision of 0.8514, a recall rate of 0.7143, and an F1-score of 0.7616. This performance indicates the suitability of this model for high-precision detection tasks. The YOLOv11n and YOLOv11m models exhibited consistent performance, with mAP50 values of 0.7652 and 0.7593, respectively. Additionally, both models demonstrated mAP50-95 values of 0.4445 and 0.4444, in conjunction with F1-score values of 0.7556 and 0.7510, respectively. By contrast, the YOLOv11x model demonstrated the most optimal performance, with a recall of 0.7339, an mAP50 of 0.7667, and an mAP50-95 of 0.4449. However, its frame rate was 27.8733 FPS, which was the lowest among all of the models.
Figure 5 shows the visualization results for the bounding-box labeling, and Figure 6 shows the visualization results for segmentation. The visualization results presented in Figures 5, 6 demonstrate patterns consistent with the quantitative metrics. The bounding-box labeling method enabled rapid detection of fire and smoke; however, incomplete coverage frequently occurred for objects with ambiguous boundaries or high diffusion such as smoke. In scenes where smoke dispersed beyond the confines of the vehicle, the area detected by the bounding box was narrower than the actual smoke.
By contrast, the implementation of the segmentation labeling technique facilitated the delineation of object boundaries and diffusion ranges within a single scene to enable object recognition that more closely resembled real conditions. For images depicting flames spreading along building exteriors, segmentation accurately captured both the extent of fire propagation and the spatial distribution of smoke, which remained clearly distinguishable from the background. This finding suggests that the segmentation labeling method is a viable approach to detect objects in challenging situations such as complex environments or overlapping objects.

4. Conclusion

In this study, we implemented bounding-box and segmentation labeling using five variants (n, s, m, l, and x) of the YOLOv11 object detection model. A comparative performance analysis was conducted to evaluate the performance of the models in detecting EV battery fires and smoke. Experiments were conducted under identical learning environments and hyperparameter settings; precision, recall, mAP50, mAP50-95, F1-score, and frame rate in FPS were recorded as key measures of performance. We also examined the accuracy and computational efficiency of the different models.
The bounding-box labeling method generally exhibited superior performance in terms of inference speed compared with the segmentation labeling method. In particular, the YOLOv11n and YOLOv11s models processed the input at high speeds while retaining high precision, attaining FPS values of 44.62 and 42.58, respectively, in conjunction with mAP50 values of 0.7735 and 0.7693. The YOLOv11l model exhibited the highest precision, with a recorded precision value of 0.8448 and an F1-score of 0.7577. This performance indicates that the model is suitable for environments where precise detection is required. Despite possessing the most parameters and a complex architecture, the YOLOv11x model achieved an mAP50 of 0.7672, which was 0.63% lower than YOLOv11n. It also operated at 31.51 FPS, approximately 29% slower, which indicates lower computational efficiency.
With respect to the segmentation labeling methods, the mAP50 for the bounding-box labeling method based on YOLOv11n was 0.7735, whereas that for the method based on segmentation was 0.7652, which is 0.83% lower. The mAP50-95 values were 0.5016 and 0.4445, respectively, which represents a decrease of approximately 5.7%. This discrepancy is attributed to the precise labeling structure based on pixel-level masking. Quantitative metrics revealed that the overall difference in performance between the two methods was generally within the range of 1 to 6%, which indicates that the difference was not significant. However, an analysis of the visualization results indicated notable limitations of the bounding-box labeling method. Specifically, rectangular representations inherently include background regions surrounding smoke, which can resulted in false positives or negatives. Conversely, segmentation labeling precisely delineates the boundaries of smoke and initial flames for each pixel of the image. Therefore, it minimizes superfluous background interference and alleviates the variation in confidence between frames. Furthermore, the model was able to identify states that exceeded an established threshold, which suggests that it has some promise in fire detection based on observed shapes. These results can be interpreted as indicating the validity of the model in real-world environments, which is challenging to assess using solely simple quantitative metrics. Therefore, the segmentation labeling method is considered appropriate for application environments where rapid and precise initial detection is paramount such as EV battery fires. In future research endeavors, we plan to employ a range of generative artificial intelligence systems to generate diverse datasets comprising fire images. Subsequent studies will be conducted to enhance the generalization performance of various artificial intelligence models.

Notes

Author Contributions

The following statements should be used “Conceptualization, J.C. and E.Y.; methodology, J.C.; software, E.Y.; validation, J.C., and E.Y.; formal analysis, J.C.; investigation, E.Y.; resources, J.C.; data curation, E.Y.; writing—original draft preparation, J.C.; writing—review and editing, J.C.; visualization, E.Y.; supervision, J.C.; project administration, H.J.; funding acquisition, H.J. All authors have read and agreed to the published version of the manuscript.”

Conflicts of Interest

The authors declare no conflict of interest.

Acknowledgments

This work was supported by the National Research Foundation of Korea (NRF) grant funded by the Korean government (MSIT) (NRF-2021R1G1A1014385)

Figure 1.
Comparison of mAP and latency of object detection models.
KIFSE-bad0c184f1.jpg
Figure 2.
Architecture of the YOLOv11 model.
KIFSE-bad0c184f2.jpg
Figure 3.
Labeled results for images of vehicle fires.
KIFSE-bad0c184f3.jpg
Figure 4.
Dataset of images electric vehicles on fire.
KIFSE-bad0c184f4.jpg
Figure 5.
Visualization of the results obtained using the bounding-box method for each YOLOv11 model.
KIFSE-bad0c184f5.jpg
Figure 6.
Visualization of segmentation results for each YOLOv11 model.
KIFSE-bad0c184f6.jpg
Table 1.
Common Properties of Bounding-Box Labeling in YOLOv11
Model Size(pixels) mAP(box) 50-95 Speed CPU ONNX [ms] Speed T4 TensorRT10 [ms] Params [m] FLOPs [B]
n 1024 78.4 117.6 ± 0.8 4.4 ± 0.0 2.7 17.2
s 1024 79.5 219.4 ± 4.0 5.1 ± 0.0 9.7 57.5
m 1024 80.9 562.8 ± 2.9 10.1 ± 0.4 20.9 183.5
l 1024 81.0 712.5 ± 5.0 13.5 ± 0.6 26.2 232.0
x 1024 81.3 1408.6 ± 7.7 28.6 ± 1.0 58.8 520.2
Table 2.
Common Properties of Segmentation Labeling in YOLOv11
Model Size(pixels) mAP(box) mAP(mask) Speed CPU Speed T4 Params [m] FLOPs [B]
50-95 50-95 ONNX [ms] TensorRT10 [ms]
n 640 38.9 32.0 65.9 ± 1.1 1.8 ± 0.0 2.9 10.4
s 640 46.6 37.8 117.6 ± 4.9 2.9 ± 0.0 10.1 35.5
m 640 51.5 41.5 281.6 ± 1.2 6.3 ± 0.1 22.4 123.3
l 640 53.4 42.9 344.2 ± 3.2 7.8 ± 0.2 27.6 142.2
x 640 54.7 43.8 664.5 ± 3.2 28.1 ± 1.2 62.1 319.0
Table 3.
Hyperparameter and Hardware Settings Used in the Training Process
Hyperparameter
Hardware
Training Parameters Details Name Version
Epochs 300 Pytorch 3.9.0
Batch size 16 CUDA 12.3
Image size (Pixels) 640 × 640 CPU Intel® Xeon® Silver 4210, 10 Core
Optimizer algorithm SGD RAM 192GB
Learning rate 0.01 GPU Nvidia RTX 3090 × 2
Table 4.
Performance of the YOLOv11 Models with Bounding-Box Labeling
Model Precision Recall mAP 50 mAP 50-95 F1-score FPS
n 0.8402 0.7160 0.7736 0.5017 0.7633 44.6167
s 0.8299 0.7331 0.7693 0.4951 0.7622 42.5812
m 0.8376 0.7185 0.7663 0.4900 0.7601 39.7091
l 0.8448 0.7657 0.7657 0.4972 0.7577 31.1455
x 0.8379 0.7331 0.7672 0.4955 0.7554 31.5061
Table 5.
Performance of the YOLOv11 Models with Segmentation Labeling
Model Precision Recall mAP 50 mAP 50-95 F1-score FPS
n 0.8255 0.7286 0.7652 0.4445 0.7556 38.7860
s 0.8468 0.7097 0.7613 0.4375 0.7557 40.5783
m 0.8496 0.7132 0.7593 0.4444 0.7510 37.2132
l 0.8514 0.7143 0.7611 0.4441 0.7616 30.4520
x 0.8417 0.7339 0.7667 0.4449 0.7561 27.8733

References

1. G. Y. Ni, Z. Q. Li and S. J. Lee, “Analysis of Electric Vehicle Purchasing Factors Using Text Mining of SNS Review”, Journal of Information Technology and Architecture, Vol. 22, No. 1, pp. 87-97 (2025), https://doi.org/10.22865/jita.2025.22.1.87.
crossref
2. J. L. Breuer, R. C. Samsun, D. Stolten and R. Peters, “How to Reduce the Greenhouse Gas Emissions and Air Pollution Caused by Light and Heavy Duty Vehicles with Battery-Electric, Fuel Cell-Electric and Catenary Trucks”, Environment International, Vol. 152, pp. 106474(2021), https://doi.org/10.1016/j.envint.2021.106474.
crossref pmid
3. Joint Committee of the Relevant Ministries of the Republic of Korea, "2030 Nationally Determined Contributions (NDCs)", https://www.2050cnc.go.kr/flexer/view/BOARD_ATTACH?storageNo=174 (2021).

4. J. W. Kim, “Legislative Improvement and Legislative Direction to Promote Reuse and Recycling of Electric Vehicle Batteries”, Journal of Legislation Studies, Vol. 22, No. 1, pp. 127-162 (2025), https://doi.org/10.31536/jols.2025.22.1.005.
crossref
5. H. J. Kim, S. Y. Kim and J. G. Kwon, “Ignition Point Prediction by Combustion Patterns Analysis in EV Battery Fire”, Journal of Fire Investigation Society of Korea, Vol. 16, No. 1, pp. 19-32 (2025), https://doi.org/10.31345/fisk.2025.16.1.2.
crossref
6. J. J. Kwak and S. S. Kim, “Demand Analysis and Forecasting of Battery Electric Vehicles in Korea”, Journal of the Korean Society of Supply Chain Management, Vol. 20, No. 1, pp. 24-35 (2020), https://doi.org/10.25052/KSCM.2020.05.20.1.24.
crossref
7. C. S. Park, “A Study on the Problems and Countermeasures of Electric Vehicle Fires in Underground Parking Lots: Focusing on the 4M Analysis Method”, The Journal of Social Science, Vol. 10, No. 1, pp. 73-90 (2025), https://doi.org/10.48033/jss.10.1.4.
crossref
8. YOLO Vision Ultralytics, "Ultralytics YOLO11", https://docs.ultralytics.com/ko/models/yolo11/ (2025).

9. Github YOLOv11, "YOLOv11", https://github.com/ultralytics/ultralytics (2025).

10. E. H. Alkhammash, “Multi-Classification Using YOLOv11 and Hybrid YOLO11n-MobileNet Models: A Fire Classes Case Study”, MDPI fire, Vol. 8, No. 1, pp. 17(2025), https://doi.org/10.3390/fire8010017.
crossref
11. H. J. Kwon, "A Study on Real-Time Smoke and Flame Object Detection Using Deep Learning-Based YOLO Model", Master's Thesis, Semyung University (2025).

12. YOLO Vision Ultralytics, "Oriented Bounding Boxes Object Detection", https://docs.ultralytics.com/tasks/obb/ (2025).

13. YOLO Vision Ultralytics, "Instance Segmentation", https://docs.ultralytics.com/tasks/segment/ (2025).

TOOLS
Share :
Facebook Twitter Linked In Google+ Line it
METRICS Graph View
  • 0 Crossref
  •    
  • 1,112 View
  • 18 Download
Related articles in Int J Fire Sci Eng.


ABOUT
BROWSE ARTICLES
EDITORIAL POLICY
AUTHOR INFORMATION
Editorial Office
Room 906, The Korea Science Technology Center The first building, 22, Teheran-ro 7 Gil, Gangnam-gu, Seoul, Republic of Korea
Tel: +82-2-555-2450/+82-2-555-2452    Fax: +82-2-3453-5855    E-mail: kifse@hanmail.net                

Copyright © 2026 by Korean Institute of Fire Science and Engineering.

Developed in M2PI

Close layer
prev next