-
Notifications
You must be signed in to change notification settings - Fork 86
Open
Description
System: Fedora 36
Backscrub: version heads/main-0-g4f70bc1 (Tensorflow: build tags/v2.8.0-0-g3f878cff5b6, run-time 2.8.0)
opencv 4.5.5
Launching backscrub with:
backscrub -c /devvideo0 -v /dev/video3 -m body-pix-float-050-8.tflite
crash at libbackscrub.cc line 368
cv::resize(ctx.ofinal(ctx.in_roidim),tmpbuf,ctx.mroi.size());
ctx.ofinal has a size of 33x33 and ctx.in_roidim 257x257
Modify the code to
ctx.ofinal.copyTo(tmpbuf);
cv::resize(tmpbuf,tmpbuf,ctx.mroi.size());
solve the problem partially. Of course, the result is not very nice.
(With the arguments -d -d there is a crash again).
Metadata
Metadata
Assignees
Labels
No labels