sophia-m commited on
Commit
ebf6068
·
verified ·
1 Parent(s): 79242de

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -0
README.md CHANGED
@@ -38,6 +38,13 @@ Videos 2 & 3:
38
 
39
  ---
40
  # Model Selection
 
 
 
 
 
 
 
41
 
42
 
43
  ---
 
38
 
39
  ---
40
  # Model Selection
41
+ ## YOLOv11 Object Detection Model
42
+ I chose to use YOLOv11 to create a custom object detection model. The model was trained to detect the presence of Southern Sea Otters in water and on land. I chose an object detection model because it would allow me to add additional features to my model through supplementary code snippets. The features would produce additional visualizations to better interpret movement patterns and behaviors from the dataset. I manipulated the code [found in our textbook](https://oceancv.org/) to better identify and correctly label the otters in lower resolution cam footage, as well as in both land and water.
43
+
44
+ ## Additional Features: Ultralytics Objects Counting in Regions & Heatmap
45
+ Additionally, I utilized code from Ultralytics to produce an object counting in region video. I defined the 3 regions of interest (land, water, seclusion) through pixel coordinates over the input video, meaning the model was then able to differentiate between each zone and produce unique counts for each. I was able to manipulate the base code to track all 3 regions as once/
46
+
47
+ I also utilized Ultralytics’ heatmap code to display a heatmap on the input video, showing which regions of the enclosure were most frequently occupied. I specifically focused the heatmap on the land zone, where the otters were spending most of their resting time. I manipulated the code to focus on the land zone, using pixel locations to create a custom region within the video.
48
 
49
 
50
  ---