Tool/software:
Hi Team,
I'm working on SDK v 08_02_00_05(Linux+RTOS).
I have a working single camera application, which accepts fisheye camera input and displays rectilinear output on monitor using LDC node.
This has been achieved by passing generated LUT as mesh image to LDC parameter.
I have generated xmls files using DCC tuning tool and executed the below code to generate C header file.
DCC_TOOL_PATH=../../../../../tools/dcc_tools/
OUT_PATH=../../../../include
DCC_BIN_DIR=../../dcc_bins
DCC_BIN_LINEAR_DIR=../../dcc_bins/linear
# Ensure required directories exist
mkdir -p "$DCC_BIN_DIR"
mkdir -p "$DCC_BIN_LINEAR_DIR"
# Remove old files
rm -f *.bin
rm -f $OUT_PATH/dcc_ldc_isx016.h
# Run DCC tool
$DCC_TOOL_PATH/dcc_gen_linux ISX016_mesh_ldc_dcc.xml
# Find the actual .bin file
BIN_FILE=$(ls cid42_*.bin 2>/dev/null | head -n 1)
if [ -z "$BIN_FILE" ]; then
echo "Error: DCC binary not generated!"
exit 1
fi
# Move and rename the binary file
cp "$BIN_FILE" "$DCC_BIN_DIR/isx016_dcc_ldc.bin"
cp "$BIN_FILE" "$DCC_BIN_LINEAR_DIR/"
# Convert to C header file
$DCC_TOOL_PATH/dcc_bin2c "$DCC_BIN_DIR/isx016_dcc_ldc.bin" "$OUT_PATH/dcc_ldc_isx016.h" dcc_ldc_isx016
# Cleanup
rm -f *.bin
Could you please let me know how to achieve the same using those without mesh image.
Also, Please confirm whether ldc)bj->dcc.config can be used on vehicle(integrated with cameras) standing in idle position only or even when vehicle is in moving state too?
Regards,
Chaitanya Prakash Uppala
