Yolo_mark | marking bounded boxes of objects in images for training | Computer Vision library
kandi X-RAY | Yolo_mark Summary
kandi X-RAY | Yolo_mark Summary
Windows & Linux GUI for marking bounded boxes of objects in images for training Yolo v3 and v2. Supported both: OpenCV 2.x and OpenCV 3.x. 3.1 Download pre-trained weights for the convolutional layers (76 MB): 3.2 Put files: yolo-obj.cfg, data/train.txt, data/obj.names, data/obj.data, darknet19_448.conv.23 and directory data/img near with executable darknet-file, and start training: darknet detector train data/obj.data yolo-obj.cfg darknet19_448.conv.23. For a detailed description, see:
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of Yolo_mark
Yolo_mark Key Features
Yolo_mark Examples and Code Snippets
Community Discussions
Trending Discussions on Yolo_mark
QUESTION
I want to train my data and create a weights file to train my YOLOV3 network. The objects in my database are not in COCO's classes so I do not want to use their weights file. I also have a limitation - I can not use darknet and I also prefer not to use the torch library.
The files I have: (according https://github.com/AlexeyAB/Yolo_mark/issues/60#issuecomment-401854885)
- yolov3-custom.cfg according my classes
- obj.names with my class's names
- train.txt + test.txt with list of image's location
- folder with images+ labels yolo format (object-class, x, y, width, height)
- obj.data
What can I do?
...ANSWER
Answered 2020-Nov-20 at 14:43You can still use the pre-trained weights on ImageNet if you want to start with pre-trained weights. If you have different classes than the COCO dataset that's no problem. You can define your own classes, and start training with the pre-trained weights. During training, the weights will be updated to detect your custom classes.
You can use these weights for YOLOv3: "https://pjreddie.com/media/files/yolov3.weights"
QUESTION
I'm working on real-time clothing detection. so i borrowed the code from GitHub like this:https://github.com/rajkbharali/Real-time-clothes-detection
but (H, W) = frame.shape[:2]
:following error in last line.
Where should I fix it?
ANSWER
Answered 2020-Sep-24 at 19:03The reason behind your error is that the frame is None(Null)
. Sometimes, the first frame that is captured from the webcam is None mainly because
(1)
the webcam is not ready yet ( and it takes some extra second for it to get ready)
or (2)
the operating system does not allow your code to access the webcam.
In the first case, before you do anything on the frame you need to check whether the frame is valid or not :
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install Yolo_mark
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page