Port from Python https://github.com/asya-ai/sporta_centrs_scoreboard_ocr (invite sent)
To C++: https://github.com/asya-ai/sporta_centrs_scoreboard_cpp (invite sent)
Create Visual Studio C++ project (latest version), if necessary can add dynamically linked libraries, but must have to use some exactly these versions
x1Qt 5.14.1
2opencv 4.5.3
3boost 1.83
4openssl 1.1.1.d
5cryptopp_700
6bmd 11.5.1
7ndi 6.0
8aja 15.2.0.4
9ffmpeg 4.4
10libjpeg-turbo
Must implement Dynamic DLL with a function get_transformation_from_photo(cv::Mat rgb_photo) -> struct_output
struct_output
must have cv::Mat transformation
(opencv transformation matrix) and if possible to find then also List<cv::Vec4f > contour
before transformation in input pixel space, contour can be split in multiple lines, and cv::Mat rgb_photo_transformed
for verification and cv::Mat rgb_photo_original_with_contour
original image with lines drawn on top of it for validation
Write test code in console app, where path to file given as argument and output is new transformed image.
There are 2 stages within get_transformation_from_photo
:
Algoirthms are used to extract all lines in the photo
Algoirthms are used filter lines, improve contour and generate transformation matrix. If full or partial countour is found then also these lines can be used, otherwise looking for alternative ways to get transformation matrix
Assumptions:
Tablo is in the middle of photo
Tablo takes significant portion of photo
To speed up implementation
Try adding in comments pyhon code and generate CPP code
Try commanding selected code to be ported using http://cursor.com (if necessary we will buy pro version)
perplexity.ai give example in C++ LibraryX how to do Z
Document as much as possible code with references in comments to original python files
The main logic is based on:
1.) openCV → directly available in C++
2.) Numpy → Armadillo, Eigen (choose simplest ad most documented)
3.) Shapely → directly built on GEOS (original C++ library)
AI models:
1.) Segmentation model:
pytorch → TorchScript, ONNX format
2.) deepLSD:
https://github.com/cvg/DeepLSD
torch, numpy, scipy - only implement functions used, not all
Problematic part here might be the merging, filtering and scoring functions used to process the predicted lines from the model.
Full requirements can be found: https://github.com/cvg/DeepLSD/blob/main/requirements.txt
Model weights must be in ONNX format, get latest from reinis
Ours: 37 executed functions within 645 lines of code
deepLSD: 43 executed functions within 1061 lines of code
File overview: