Results 42 comments of Seungsu Lim

@jiluhu Pointer arithmetic on void pointers is not part of the C standard and may not work with your compiler. This question with accompanying answers should help: https://stackoverflow.com/questions/8162409/c-casting-from-uint32-t-to-void Example: ```...

@BBeomH Thank you for your interest in this repo. --- > As the title says, I want this repo to work as a local file. So I didn't operate ventilator,...

@srika91 Hi, Thank you for your interest in this repo. Please try [this](https://stackoverflow.com/a/21173918) and let me know if it doesn't work.

@srika91 Hi, This repo dosen't support YOLO. Could you try below command? ``` ./worker cfg/openpose.cfg weights/openpose.weights -gpu 0 ``` if it doesn't work, please check below and let me know....

You need to run worker, ventilator, sink and action.py ``` client ↓ ventilator ↓ worker ↓ sink action.py ↓ client ```

Sorry. there is no code for test. I think that connection is not established between sink and action. 1. check ***ventilator -> worker -> sink*** pipeline please change sink.cpp and...

* **Ventilator** : A ventilator that distribute tasks that can be done in parallel * **Worker** : A set of workers that process tasks (Pose Estimation) * **Sink** : A...

@chaifong92 Sorry for my late reply. I don't know what the problem is. Could you show me the contents of the files ? (`yolo_v2_class.hpp`, `yolo_v2_class.cpp`)

@gzchenjiajun, CudnnLSTM is a GPU-only operation. (it depends on CuDNN) So we need to transform CuDNNLSTM to LSTM. (CuDNNLSTM/LSTM weights are interchangeable) Delete action.py Line 26 and insert below code....

@gzchenjiajun In this project LSTM is expensive but Pose Estimation (CNN) is more expensive. It spend most of time (About 95 percent) So if your machine can process pose estimation...