Git Product home page Git Product logo

Comments (4)

mikel-brostrom avatar mikel-brostrom commented on June 20, 2024

Provide the full error please

from yolo_tracking.

MABatin avatar MABatin commented on June 20, 2024

Provide the full error please

image
I get this error only, no full traceback. I've tried to following block of code to print traceback of error but it still doesn't print full traceback:

try:
    tracked_dets = tracker.update(
                                    dets, frame
                                )  # --> M X (x, y, x, y, id, conf, cls, ind)
except Exception:
    print(traceback.format_exc())

from yolo_tracking.

mikel-brostrom avatar mikel-brostrom commented on June 20, 2024

Sorry. I cannot help you with this little information. Try:

import traceback

try:
    # Simulating your tracking update function call
    # Assuming 'tracker.update' is a function that might throw an exception
    # Replace 'dets' and 'frame' with actual data that you pass to the function
    tracked_dets = tracker.update(dets, frame)  # --> M X (x, y, x, y, id, conf, cls, ind)
except Exception as e:
    # This should print the error message and the complete traceback
    print("An error occurred:", e)
    print(traceback.format_exc())

from yolo_tracking.

github-actions avatar github-actions commented on June 20, 2024

πŸ‘‹ Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.
Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!

from yolo_tracking.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.