aerial photography with position and orientation (Omega, Phi and Kappa) for camera projection

Hi - Now I got it to work with adding this code in the flightlogs.xml file

<format desc="Name, X, Y, Alt, Omega, Phi, Kappa" reader="CapturingReality.Import.CSVFlightLog">
        <parser allowedSeparators=",; &tab;" comment="#" showIgnoreFirstline="true" qualifiers="&quot;optional" >
            <Image index="0" format="name.ext"/>
            <X index="1" format="value"/>
            <Y index="2" format="value"/>
            <Altitude index="3" format="value"/>
            <Omega index="4" format="degrees"/>
            <Phi index="5" format="degrees"/>
            <Kappa index="6" format="degrees"/>
        </parser>
    </format>

It takes the correct X,Y and Altidude position and adds the values to the camera. But it looks like there is an error on the Omega, Phi, Kappa values.

Here is the result with the alignment with the values.

Am I doing something wrong in terms of the values? Is there to double check the Omega, Phi, Kappa values in terms of the Yaw, Pitch and Roll values they are recalculated into?