Sony cameras change picture orientation by default.
Is there a way to set a fixed picture orientation (portrait/landscape) using the remote API? I could not find any in the manual.
Sorry, that is not possible using the Camera Remote API.
Related
I am trying to take photos while the camera is connected to the computer. As soon as the camera is connected to to PC the camera changes it's mode to busy. I would like trigger the camera to take picture while it is connected to the computer.
You can use the EdsSendStatusCommand function with kEdsCameraStatusCommand _UIUnLock to use the camera manually while plugged in. Note that some commands issued with the Canon SDK may lock the camera UI again.
Could I send an image or video from Arduino IDE to Touch Designer software?
Could I use the pictures saved with the CMOS camera for example?
Thanks,
Giuseppe
You can send images via bluetooth, wifi or serial, but the speed of taking the picture and sending over wont be that fast.
You are better of with a gopro connected via wifi or Canon via usb cable. Forget Arduino if you need a live feed.
Is there a way/API to access built in IOS8 crop and rotate feature, i am creating an app in which i want to store an image after the user crops a particular selection of it. Can i use built-in crop/rotate IOS8 feature in my application using any obj-c/swift API..
If you are referring using code to corp and rotate then use CGContext API:
CGImageCreateWithImageInRect for corp.
CGAffineTransformRotate for rotate.
I'm working with a Sony DSC-QX100 camera via Sony's Remote Camera api, specifically for use on a Windows 8 tablet (basically replacing the built-in camera of the tablet with this unit). I'm able to consume the camera's LiveView (streaming) and LiveShot (take a picture and retrieve the image from url) features triggered from my application.
My question is whether or not the Remote Camera api exposes any functionality to access pictures stored on the camera's SD card (when it is available). Bottom line, my user may choose to take the picture directly with the camera unit (manually, instead of remotely via my application on the tablet) and I've not yet found the method by which to retrieve this picture from the camera (other than transferring the SD card from camera to pc). Anyone tried this or seen something in the API documentation that I'm missing?
Current Camera Remote API does not provide direct access to SD card.
All available APIs are documented.
Is it possible to enable the default iOS 7 camera effects when using UIImagePickerController? I know that it's possible to control the flash and the image quality, but I cannot find if it's possible to add the effects when capturing an image.
No, UIImagePickerController does not offer any of the filters that you see in the iOS 7 Camera app. You would need to build those using Core Image's CIFilters, or something like GPUImage.