Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jun 2, 2024
1 parent 0038afc commit c653a3c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/cosmic_pi_network/cvlib/README.md
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.

0 comments on commit c653a3c

Please sign in to comment.