Retrieve Frame Count
In this tutorial, we learn how to get frame count from camera with ion-kit.
Prerequisite
- ionpy
- numpy
- OpenCV
pip3 install -U pip
pip3 install opencv-python
pip3 install numpy
pip3 install ion-python==1.6.0
Tutorial
The process of setting up the pipeline is the exactly same as the one in the previous tutorials. We just need to set up an additional output port and buffer to obtain frame count from the BB.
Get frame count
While displaying image, we also want to retrieve the frame count information. The only difference from previous tutorials is that we need to bind the frame count value to a new port.
fcdata = np.full((1), fill_value=0, dtype=np.uint32)
frame_count = []
for i in range(num_device):
frame_count.append(Buffer(array=fcdata))
Execute the pipeline
Execute builder.run()
to finish the pipeline.
Since frame count directory does to numpy array fcdata
, you can print each framecount as follows:
print(fcdata[0])
Complete code
Complete code used in the tutorial is here.