-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# CVLib | ||
===== | ||
|
||
This is a computer vision library that provides a simple way to perform image processing, object detection, and YOLOv4. | ||
|
||
### Installation | ||
|
||
``` | ||
1. mkdir build cd build cmake.. cmake --build. | ||
``` | ||
|
||
|
||
### Usage | ||
|
||
python from cvlib import Image, YOLOv4, ObjectDetection, ImageProcessing image = Image('image.jpg') yolo_v4 = YOLOv4('yolo_v4.cfg', 'yolo_v4.weights') object_detection = ObjectDetection(yolo_v4) image_processing = ImageProcessing() objects = object_detection.detect_objects(image.get_image()) thresh = image_processing.apply_threshold(image.get_image()) edges = image_processing.apply_canny_edge_detection(image.get_image()) | ||
|
||
|
||
### License | ||
|
||
This library is licensed under the MIT License. |