예제 #1
0
파일: camera.py 프로젝트: kasliwalr/PyVCAM
    def reset_pp(self):
        """Resets the post-processing settings to default.

        Returns:
            None
        """
        try:
            pvc.reset_pp(self.__handle)
        except:
            raise RuntimeError('Failed to reset post-processing settings.')
예제 #2
0
    def reset_pp(self):
        """Resets the post-processing settings to default.

        Note:
            The camera objects pp_table never changes at this point. Maybe in
            the future there will be setters and getters for each
            post-processing feature.

        Returns:
            None
        """
        try:
            pvc.reset_pp(self.__handle)
        except:
            raise RuntimeError('Failed to reset post-processing settings.')