mendevi.database.extract.extract_height
- mendevi.database.extract.extract_height(raw: dict[str]) int[source]
Return the height of images in pixels.
SELECT t_dst_video.vid_height FROM t_dec_decode JOIN t_vid_video AS t_dst_video ON t_dec_decode.dec_vid_id = t_dst_video.vid_id
or, alternativaly
SELECT t_dst_video.vid_height FROM t_enc_encode JOIN t_vid_video AS t_dst_video ON t_enc_encode.enc_dst_vid_id = t_dst_video.vid_id
Parameters
- rawdict[str]
The result line of select request.