花の姿勢推定モデル

Given a flower image cropped from an object detection bounding box, this model predicts its pose in Euler angles.

Screenshot 2025-01-16 at 3 50 27


Setup:

cd mlcore/sixdrepnet
pip install poetry
poetry install

Train:

poetry run python main.py

Predict:

poetry run python inference.py

Or in Python:

from inference import predict
results = predict("path/to/images")
print(results)