Altay

Results 14 comments of Altay

First, the project is winform and I call the filter function AFTER I call setBackend. The out put of Wrapper is: Quadro_600 CUDA v7.5 2.1 same as the out put...

Indeed the problem that I have is "How to send a bitmap object to arrayfire" There is a loadMem function but I coud not find a way to send images...

I also monitor the NVidiea control panel>Manage GPU Utilization> GPU Utilization Graph. The original C++ functions utilize GPU completely, however the wrapper reaches just the 50%. Do you have any...

@pavanky Q- is the image loading process part of the loop? > No the image loading is done outside > Q-What code is inside the timed loop and what code...

@pavanky As you see the process of sending an image to arrayfire from c# is really cumbersome! To send: Bitmap-> int[,] To get: array-> double[,] ->int[,] -> byte[,]-> bitmap! it...

@pavanky In the case you may want to know how do I load bitmap objects ` public static int[,] LoadFile(string path) { try { image = new Bitmap(path); bmpData =...

@royalstream @shehzan10 The main body of the project is in C# (major packages, components). Indeed, this project is going to be a real application of ArrayFire in medical image processing...

@royalstream I have tested a simple project to see the performance of the wrapper ``` double val = (1 / (double)(5 * 5 * 4)); ArrayFire.Array smoothingKernel = Data.Constant(val, new...

But on the C++ I have excellent performance event with double data type!