boofcv.alg.distort.brown.LensDistortionBrown Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boofcv-geo Show documentation
Show all versions of boofcv-geo Show documentation
BoofCV is an open source Java library for real-time computer vision and robotics applications.
/*
* Copyright (c) 2023, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package boofcv.alg.distort.brown;
import boofcv.alg.distort.LensDistortionNarrowFOV;
import boofcv.alg.distort.Transform2ThenPixel_F32;
import boofcv.alg.distort.Transform2ThenPixel_F64;
import boofcv.alg.distort.pinhole.PinholePtoN_F32;
import boofcv.alg.distort.pinhole.PinholePtoN_F64;
import boofcv.struct.calib.CameraPinholeBrown;
import boofcv.struct.distort.Point2Transform2_F32;
import boofcv.struct.distort.Point2Transform2_F64;
/**
* {@link CameraPinholeBrown Brown} lens distortion model point transforms.
*
* @author Peter Abeles
*/
public class LensDistortionBrown implements LensDistortionNarrowFOV {
CameraPinholeBrown p;
public LensDistortionBrown( CameraPinholeBrown p ) {
this.p = p;
}
@Override public Point2Transform2_F64 distort_F64( boolean pixelIn, boolean pixelOut ) {
if (pixelIn) {
Point2Transform2_F64 p_to_n =
new AddBrownPtoN_F64().setK(p.fx, p.fy, p.skew, p.cx, p.cy).setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F64(p_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return p_to_n;
}
} else {
AddBrownNtoN_F64 n_to_n = new AddBrownNtoN_F64().setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F64(n_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return n_to_n;
}
}
}
@Override public Point2Transform2_F64 undistort_F64( boolean pixelIn, boolean pixelOut ) {
if (pixelIn) {
Point2Transform2_F64 p_to_n =
new RemoveBrownPtoN_F64().setK(p.fx, p.fy, p.skew, p.cx, p.cy).setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F64(p_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return p_to_n;
}
} else {
RemoveBrownNtoN_F64 n_to_n = new RemoveBrownNtoN_F64().setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F64(n_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return n_to_n;
}
}
}
@Override public Point2Transform2_F32 distort_F32( boolean pixelIn, boolean pixelOut ) {
if (pixelIn) {
Point2Transform2_F32 p_to_n =
new AddBrownPtoN_F32().setK(p.fx, p.fy, p.skew, p.cx, p.cy).setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F32(p_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return p_to_n;
}
} else {
AddBrownNtoN_F32 n_to_n = new AddBrownNtoN_F32().setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F32(n_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return n_to_n;
}
}
}
@Override public Point2Transform2_F32 undistort_F32( boolean pixelIn, boolean pixelOut ) {
if (pixelIn) {
Point2Transform2_F32 p_to_n =
new RemoveBrownPtoN_F32().setK(p.fx, p.fy, p.skew, p.cx, p.cy).setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F32(p_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return p_to_n;
}
} else {
RemoveBrownNtoN_F32 n_to_n = new RemoveBrownNtoN_F32().setDistortion(p.radial, p.t1, p.t2);
if (pixelOut) {
return new Transform2ThenPixel_F32(n_to_n).set(p.fx, p.fy, p.skew, p.cx, p.cy);
} else {
return n_to_n;
}
}
}
@Override
public Point2Transform2_F32 normalized_F32() {
return new PinholePtoN_F32().setK(p.fx, p.fy, p.skew, p.cx, p.cy);
}
@Override
public Point2Transform2_F64 normalized_F64() {
return new PinholePtoN_F64().setK(p.fx, p.fy, p.skew, p.cx, p.cy);
}
public CameraPinholeBrown getIntrinsic() {
return p;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy