Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.18 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.18 KB

AngleEye

A convolutional model that recognizes the orientation of objects in an image.

This project won the "Best Corporate Award" at the 2023 Hang-Hackathon. 2023 항해커톤 상장

Detector.py

  • This module uses FasterRCNN-Resnet50-FPN model to detect object from an image.
  • It only draws boxes around objects with the highest scores.
  • Save the annotations if the model detects object correctly.
  • Saved annotations will be used to crop images in Cropper.py.

Cropper.py

  • This module will crop annotated boxes from images.
  • It will increase the accuracy during the angle recognition process.

AngleEye.ipynb

  • This module uses convolutional filters to determine the angle of the object's base.
  • The comments in the code provide an explanation of how it works.

AccuracyCheck.py

  • This module checks the accuracy of AngleEye model.