nDisplay flickering

Hi,

I am trying to setup an nDisplay with a sample project.
For now I managed to make it work with a simple dualscreen setup with a projection of type “simple”.
However for the project I am working on, I need to be able to use mpcdi type.
using the mpcdi type I managed to make it work by passing the pfm file and alpha png file. For now I passed and white image as alpha png file and a no distortion pfm file for testing purpose. My problem is that the viewport appears but only displays a sky blue color and flickers when I move the mouse.
I would like to get some advice on how to make this work.
I also tried to use the mpcdi file but nDisplay crashed and in the log file I get Error 14, something about not being able to read the mpcdi file …
You can find attached the different files I use for my testing. (I had to change the extension of those files to txt to be able to upload them)
Any help is welcome :slight_smile:

Thanks in advance


nDisplay dev here,

what I see here is that your pfm file rather strange and only have 32x32 points.
PFM is a container for XYZ position of each pixel. I wondering what kind of calibration system was used to produce those pfms.

You won’t have it right unless PFMs are generated accordingly to MPCDI specification.

Hi,

Thank you for your answer.
Despite your help on both of my topics I decided to drop the nDisplay plugin since there is not enough documentation for my use case and the community seems rather small.

But I will try to explain how I got there, maybe this could help ppl in the future.

First I think nDisplay lacks a lot of documentation when it comes to the MPCDI type of projection. The only supported MPCDI format is 1.0 which is not outdated since the standard is 2.0 now.
Also, except a link that directs to the MPCDI website there is absolutely no details on how to use it.
I had to make a lot of guesses based on the documentation of the MPDCI 2.0 format and hope that it still works for 1.0.
after downloading the sources of UE and looking into the MPCDI reader of the plugin I figured out some of the tags of the 2.0 are different from the 1.0 (mostly uppercase difference if I remember correctly)
For the pfm file, there is only documentation in the MPCDI documentation as well, even though there is a way to directly input pfm files in the configuration file of nDisplay.
To my understanding, pfm stores the XYZ position of each pixels and based on the MPCDI documentation, it does not require to be the same resolution as the display since there is an interpolation parameter in case it does not match. The only requirement is that it is at least a 2x2 res file.
Since I was trying to make it work with a multi display system that does not export as MPCDI natively I had to make test data by building myself a custom pfm file creator program which is how I got to a 32x32 points (since it can be interpolated according to the MPCDI doc)

anyway, I spent way too much time trying to make it work, and not finding any useful information anywhere that I decided to try to make my own multi window system directly using Slate inside UE.

I am not trying to trash talk nDisplay but I hope my criticism can give you clues on what needs to be improved.
Mostly the documentation to my opinion.

Thanks for your help anyway.