Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_video2video_processor_.py의 _create_i2i_processing_task 수정 필요 #19

Closed
404Vector opened this issue Nov 22, 2023 · 0 comments
Closed

Comments

@404Vector
Copy link
Owner

loop
{
input queue -> input frame
i2i_processor(input_queue) -> output frame
}
구조를 분리할 필요가 있음

async로 동작하지만, await이 완료될 때 까지 다음 loop로 넘어가지 않는 구조이기 때문에 기능 분리 필요


loop_input
{
[input queue] -> input frame
some_processor_pool(input_queue) -> task
task -> [task queue]
}
loop_output
{
[task queue] -> task
task -> output frame
output frame -> [output queue]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant