Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/CarsCounting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ bool CarsCounting::InitTracker(cv::UMat frame)
///
void CarsCounting::DrawData(cv::Mat frame, const std::vector<TrackingObject>& tracks, int framesCounter, int currTime)
{
m_logger->info("Frame ({1}): tracks = {2}, time = {3}", framesCounter, tracks.size(), currTime);
m_logger->info("Frame {0} ({1}): tracks = {2}, time = {3}", framesCounter, m_framesCount, tracks.size(), currTime);

#if 1 // Debug output
if (!m_geoParams.Empty())
Expand Down
2 changes: 1 addition & 1 deletion example/MotionDetectorExample.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class MotionDetectorExample final : public VideoExample
///
void DrawData(cv::Mat frame, const std::vector<TrackingObject>& tracks, int framesCounter, int currTime) override
{
m_logger->info("Frame ({0}): tracks = {1}, time = {2}", framesCounter, tracks.size(), currTime);
m_logger->info("Frame {0} ({1}): tracks = {2}, time = {3}", framesCounter, m_framesCount, tracks.size(), currTime);

#ifdef USE_CLIP
std::vector<CLIPResult> clipResult;
Expand Down
Loading