Home | History | Annotate | Download | only in src

Lines Matching full:propid

737 bool VideoCapture::set(int propId, double value)
740 return icap->setProperty(propId, value);
741 return cvSetCaptureProperty(cap, propId, value) != 0;
744 double VideoCapture::get(int propId) const
747 return icap->getProperty(propId);
748 return icvGetCaptureProperty(cap, propId);
787 bool VideoWriter::set(int propId, double value)
790 return iwriter->setProperty(propId, value);
794 double VideoWriter::get(int propId) const
797 return iwriter->getProperty(propId);