DeepMosaics
DeepMosaics copied to clipboard
如何处理多处的马赛克?目前clean_youknow_video.pth只能支持一个地方的
如何处理多处的马赛克? 目前clean_youknow_video.pth只能支持一个地方的马赛克
How to deal with multiple mosaics? Many people want this answer. I have some VR videos I would like to clean and they have two spots. One suggestion would be choose the area you want it to concentrate on and then run it again on the clean file until desired result. I do not know how to implement these processes?
Thanks for your suggestion, I will put it into my todo list.
same issues with #72
此功能刚需
If VR mode, it is better to separate the video into left/right video, process, and merge. ffmpeg -i %input% -filter:v "crop=2048:2048: 0:0" L.mp4 ffmpeg -i %input% -filter:v "crop=2048:2048:2048:0" R.mp4 DeepMosaics ffmpeg -i L_clean.mp4 -i R_clean.mp4 -filter_complex hstack Out_clean.mp4 Also, it is better to add trapezoid type of Mosaics detection.
How do I split the video, what program?
How do I split the video, what program?
ffmpeg
I see there is a parameter setting support --all_mosaic_area for all mosaics region. But, the mosaics type is not rectangle/square shape for VR video. The get_mosaic_positions may not be located the mosaics region for spiral shape for VR. I think a better method should be investigated for this purpose.