I don’t have experience with RobotPy, but I think you need to specify the name of the camera when creating the USBCamera instance.
self.camera = wpilib.USBCamera("cam1")
Also, I don’t think you need to call self.camera.startCapture(), because self.camServ.startAutomaticCapture(self.camera) calls it for you.