Questions tagged [nokia-imaging-sdk]

Nokia imaging SDK is a software development kit for Windows Phone 8, 8.1, Windows RT, 8.0 and 8.1 that provides imaging tools for the developer, free. It includes over 50 different filters as well as various imaging tools. It runs optimized algorithms on the patented RAJPEG technology, resulting in a small memory footprint.

The Nokia Imaging SDK makes some of the technologies that Nokia uses in its own imaging applications available to developers. It is a productive library for manipulating image data captured and stored by mobile devices in an efficient way.

The features include decoding and encoding JPEG images, applying filters, cropping, rotating and resizing. The SDK provides more than 50 pre-made filters and effects that have been specifically developed for mobile imaging, with speed and memory performance as key drivers.

The SDK is highly optimized to be super-fast by meticulous memory and code optimization. The patented JPEG technology, RAJPEG, contributes to making this possible, as it allows access to any image data without decoding the whole image. That means you can apply effects to high resolution images, without worrying about your memory budget.

Download NuGet: http://www.nuget.org/packages/NokiaImagingSDK/

50 questions
1
vote
4 answers

Which Xap file is to be submitted to windows phone store

I have developed an application using Nokia Imaging SDK. It builds two forms of the XAP file, one for ARM platform and another for x86. Can anyone tell me which XAP file should be submitted to windows phone 8 store ?? And should I submit the file…
Sam
  • 925
  • 1
  • 12
  • 28
0
votes
1 answer

Creating tiled JPEG using Lumia Imaging SDK

How can I create a bigger tiled image from a smaller image using the Lumia Imaging SDK on WP 8.1? I'm trying to use JpegTools.BlendAsync()(doc), but I'm not sure it's the best way to do it. Also, how do I read an image as an IReadableBitmap?
0
votes
1 answer

Preview before applying Photo Filter c# wp8

I'm using Lumia Imaging SDK 2.0 for this app. Basically I've created a Rectangle for a specific filter. When user taps the Rectangle, that filter will be applied to it. But my problem is: When user taps other filters, the previous filters do not…
0
votes
1 answer

flipped images with front camera for wp8

I am using lumia imaging sdk for my windows phone app. I mainly use the front camera for it. Also am using the VideoBrush to capture the images. When I am trying to take picture with front camera, it works perfectly but when the image is captured,…
0
votes
1 answer

How to Get Tap Event from User Control in Page

Hopefully the question makes sense. What I would like to do is place an Ellipse (or styled button to look like an Ellipse with an icon inside in a user control that is dynamically populated in my code behind, and then be able to determine when the…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
2 answers

Red Eye reduction with nokia imaging SDK

I try to implement red eye reduction algorithm with Nokia Imaging SDK. I've wroten control to pick eye-circles so I dont need segmentation/face detection phase (i have points list within a circle) - I implemented it this way: protected override…
0
votes
1 answer

How to 'translate' Windows Phone ExposureCompensation range into EV units?

I am creating an app where it allows user to use bracketing by adjusting the exposure range. The PhotoCaptureDevice class exposes the KnownCameraPhotoProperties.ExposureCompensation with Int32 ranges from -12 to 12, or -18 to 18 etc depending on…
PutraKg
  • 2,226
  • 3
  • 31
  • 60
0
votes
1 answer

Missing EditingSession and FilterFactory in Nokia Imaging SDK v1.2.115.0 HDR example

I am trying to use this code in my project but it appears that EditingSession and FilterFactory classes are no longer supported in SDK v1.2.115.0 Original code WriteableBitmap toneMap1 = new WriteableBitmap(CapturedImage.PixelWidth,…
PutraKg
  • 2,226
  • 3
  • 31
  • 60
0
votes
2 answers

Change Bitmap to different shapes in Windows Phone app

I've been looking for the solution for some time and haven't yet found it. One of the functions of my app is to load an image and then to change its shape - e.g. I load a normal rectangular image, and then there are 2-3 buttons - change the image to…
0
votes
1 answer

Nokia Imaging SDK 1.2: Applying filter to WriteableBitmap

I've been trying to apply a filter from Nokias Imaging SDK to a WriteableBitmap. So far, I didn't have any success. The "best" I got is the following, which crashes on renderer.RenderAsync() MemoryStream stream = new…
Dänu
  • 5,791
  • 9
  • 43
  • 56
0
votes
1 answer

Operation is not valid due to the current state of the object

i am beginning in develop winphone and nokia imaging sdk. i have two function. firstly, i call the function below to change image to gray color private async void PickImageCallback(object sender, PhotoResult e) { if (e.TaskResult !=…
0
votes
1 answer

Create Diagonal image from bitmap image in windows phone

I want to make a diagonal/ triangle shape image from bitmap source without using any polygon control, how to do this in windows phone.
0
votes
0 answers

ArgumentException in Bitmap(Size, ColorMode, Uint32, IBuffer)

In a filter app I'm working on I want to add the ability to capture images and apply filters to them by using the Nokia Imaging SDK 1.1. Searching the internet for capturing code, I got this: await…
jalgames
  • 781
  • 4
  • 23
0
votes
0 answers

WP8 take picture with Nokia Imaging API (real time filter) and save to IsolatedStorage

I followed the examples here: http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662940%28v=vs.105%29.aspx I made the live preview and stuff work, but how can I take a picture? This is what i tried: private PhotoCaptureDevice…
0
votes
1 answer

nokia Imaging SDK customize BlendFilter

I have created this code Uri _blendImageUri = new Uri(@"Assets/1.png", UriKind.Relative); var _blendImageProvider = new StreamImageSource((System.Windows.Application.GetResourceStream(_blendImageUri).Stream)); var bf = new…