def take_picture(self): self._popup.dismiss() from plyer import camera fn = self.create_temporary_file() print 'taking picture to', fn camera.take_picture(fn, self._on_picture_complete)
def take_picture(): """Take a picture with the built in camera and save it to disk.""" if platform != 'android': return picture_name = time.strftime('%Y-%m-%d-%H-%M-%S') + '.jpg' picture_output = '/storage/sdcard0/' + picture_name camera.take_picture(picture_output, lambda file_name: False)
def take_image(self): from plyer import camera filepath = self.user_data_dir + '/' + 'temp.png' try: camera.take_picture(filename=filepath, on_complete=self.camera_callback) except NotImplementedError: print("Can't take a picture on this platform")
def takePicture(_): try: self.pic = "/storage/sdcard0/%s.jpg" % (str(self.switcher.robot.teamNumber) + "_" + str(time.time())) camera.take_picture(self.pic, lambda x: self.picture()) except Exception as error: print(error) print("can't") pass
def loadCamera(self, *largs): """Loads photo camera""" Logger.info("Photo Camera Loaded") self.mediaType = 0 e = App.get_running_app().user_data_dir + '/flicknik_temp.jpg' if os.path.isfile(e): os.remove(e) camera.take_picture(e,self.done)
def do_capture(self): filepath = App.get_running_app().user_data_dir + '/mlpic.png' self.ids.path_label.text = "Machine Learning" ext = splitext(filepath)[-1].lower() try: camera.take_picture(filename=filepath, on_complete=self.camera_callback) except NotImplementedError: popup = MsgPopup( msg= "This feature has not yet been implemented for this platform.") popup.open()
def do_capture(self): if (os.path.exists(self.filepath)): os.remove(self.filepath) try: camera.take_picture(filename=self.filepath, on_complete=self.camera_callback) except NotImplementedError: popup = MsgPopup( "This feature has not yet been\nimplemented for this platform." ) popup.open()
def do_capture(self): self.clean() name = name_imgs() ext = '.jpg' filename = "{}{}".format(name, ext) filepath = os.path.join(self.cwd, filename) try: camera.take_picture(filename=filepath, on_complete=self.camera_callback) except NotImplementedError: #self.camera_callback('image.jpg') popup = MsgPopup( "This feature is not implemented for this platform.") popup.open()
def do_capture(self): ext = splitext(self.filepath)[-1].lower() try: camera.take_picture(filename=self.filepath, on_complete=self.camera_callback) except NotImplementedError: if __name__ == "__main__": value = recognize.Main("known_people", "one.jpg", 1, 0.5, True) print(value) if value[0] == "1": sound1 = SoundLoader.load("audio/sound1.mp3") sound1.play() sm.add_widget(ResultScreen("Одна Гривна")) if value[0] == "5": sound1 = SoundLoader.load("audio/sound5.mp3") sound1.play() sm.add_widget(ResultScreen("Пять Гривен")) if value[0] == "10": sound1 = SoundLoader.load("audio/sound10.mp3") sound1.play() sm.add_widget(ResultScreen("Десять Гривен")) if value[0] == "20": sound1 = SoundLoader.load("audio/sound20.mp3") sound1.play() sm.add_widget(ResultScreen("Двадцать Гривен")) if value[0] == "50": sound1 = SoundLoader.load("audio/sound50.mp3") sound1.play() sm.add_widget(ResultScreen("Пятьдесят Гривен")) if value[0] == "100": sound1 = SoundLoader.load("audio/sound100.mp3") sound1.play() sm.add_widget(ResultScreen("Сто Гривен")) if value[0] == "200": sound1 = SoundLoader.load("audio/sound200.mp3") sound1.play() sm.add_widget(ResultScreen("Двести Гривен")) if value[0] == "500": sound1 = SoundLoader.load("audio/sound500.mp3") sound1.play() sm.add_widget(ResultScreen("Пятьсот Гривен")) else: sound1 = SoundLoader.load("error.mp3") sound1.play() sm.add_widget(ResultScreen("Ошибка")) self.change()
def do_capture(self): filepath = self.cwd + self.ids.filename_text.text if (exists(filepath)): popup = MsgPopup("Picture with this name already exists!") popup.open() return False try: camera.take_picture(filename=filepath, on_complete=self.camera_callback) except NotImplementedError: popup = MsgPopup( "This feature has not yet been implemented for this platform.") popup.open()
def tirarFoto(self): filepath = self.cwd + self.ids.filename_text.text ext = splitext(filepath)[-1].lower() if (exists(filepath)): popup = MsgPopup("Ja existe uma foto com este nome!") popup.open() return False try: camera.take_picture(filename=filepath, on_complete=self.retornoCamera) except NotImplementedError: popup = MsgPopup("nao tem suporte para esta plataforma") popup.open()
def do_capture(self): filepath = self.cwd + self.ids.filename_text.text ext = splitext(filepath)[-1].lower() if(exists(filepath)): popup = MsgPopup("Picture with this name already exists!") popup.open() return False try: camera.take_picture(filename=filepath, on_complete=self.camera_callback) except NotImplementedError: popup = MsgPopup( "This feature has not yet been implemented for this platform.") popup.open()
def do_capture(self): ext = splitext(self.filepath)[-1].lower() try: camera.take_picture(filename=self.filepath, on_complete=self.camera_callback) except NotImplementedError: if __name__ == "__main__": value = recognize.Main("known_people", "hmqual.jpg", 1, 0.5, True) print(value) print(value) print(value[0]) if value[0] == "1": sound1 = SoundLoader.load("audio/sound1.mp3") sound1.play() self.label.text = "Одна Гривна" if value[0] == '5': sound1 = SoundLoader.load("audio/sound5.mp3") sound1.play() self.label.text = "Пять Гривен" if value[0] == "10": sound1 = SoundLoader.load("audio/sound10.mp3") sound1.play() self.label.text = "Десять Гривен" if value[0] == "20": sound1 = SoundLoader.load("audio/sound20.mp3") sound1.play() self.label.text = "Двадцать Гривен" if value[0] == "50": sound1 = SoundLoader.load("audio/sound50.mp3") sound1.play() self.label.text = "Пятьдесят Гривен" if value[0] == "100": sound1 = SoundLoader.load("audio/sound100.mp3") sound1.play() self.label.text = "Сто Гривен" if value[0] == "200": sound1 = SoundLoader.load("audio/sound200.mp3") sound1.play() self.label.text = "Двести Гривен" if value[0] == "500": sound1 = SoundLoader.load("audio/sound500.mp3") sound1.play() self.label.text = "Пятьсот Гривен"
def on_touch_down(self, e): try: camera.take_picture(IMG_PATH, self.done) except: pass
def tirar_foto(self): print 'tirando foto...' filename = '/sdcard/foo.jpg' camera.take_picture(str(filename), self.foto_tirada)
def take_picture(self): filename = os.path.join(app.user_data_dir, 'tmp.jpg') camera.take_picture(filename, self.on_picture)
def take_picture(self): outname = str(uuid.uuid4()) self.ids['_center_image'].source='init_pic.png' Clock.unschedule(self.callback) camera.take_picture(self.picture_path+outname+'.jpg', self.done)
def photo(self): self.message_photo = self.user_data_dir + "/photo.jpg" camera.take_picture(self.message_photo, self.mm_callback) print "!!! Photo: " + self.message_photo
def camerabutton(self, e): camera.take_picture('/storage/sdcard/screenshot%(counter)04d.jpg', self.done)
def on_touch_down(self, e): # camera.take_picture('/storage/sdcard0/example.jpg', self.done) #Take a picture and save at this location. After will call done() callback # with open("test.txt", "w") as f: # f.write("hmm") camera.take_picture('/storage/sdcard0/example.jpg', self.done)
def takepicture(self): camera.take_picture('/storage/sdcard0/example.jpg', self.done)
def on_touch_down(self, e): camera.take_picture( "/storage/sdcard0/example.jpg", self.done ) # Take a picture and save at this location. After will call done() callback
def on_touch_down(self, e): camera.take_picture('/storage/sdcard0/FotoTeste.jpg', self.done)
def on_touch_down(self, e): camera.take_picture('/storage/sdcard0/example.jpg', self.done)
def on_touch_down(self, e): camera.take_picture( '/storage/sdcard0/example.jpg', self.done ) #Take a picture and save at this location. After will call done() callback
def take_picture(self): camera.take_picture(self.create_temporary_file(), self._on_picture_complete)
def take_picture(self): camera.take_picture( self.create_temporary_file(), self._on_picture_complete)
def on_touch_down(self, e): camera.take_picture( '/storage/sdcard0/%s.jpg' % str(self.switcher.robot.teamNumber), lambda x: self.done())