[isp_tuning] add picture quality binary.

Change-Id: Icbcd41a979b37a8ab5bd20b74ca3fb12e6d21cce
This commit is contained in:
sam.xiang
2023-02-23 10:10:10 +08:00
parent a4f213ceb0
commit cda448c3e9
9 changed files with 357771 additions and 0 deletions

29
isp_tuning/copyBin.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/bash
function copyBinToOutFolder()
{
echo $1 $2
# mPATH=$( getBinPath )
# mSENSOR=$( getSensor )
# mLENS=$( getLens )
mPATH=${CHIP_ARCH,,}/src/$2
mPRE_BIN_NAME=$2
if [ "$mPATH" != "" ]; then
sdrBin=${mPATH}/${mPRE_BIN_NAME}_sdr.bin
wdrBin=${mPATH}/${mPRE_BIN_NAME}_wdr.bin
outPath=$1
mkdir -p ${outPath}
if [ -f "${wdrBin}" ]; then
cp ${wdrBin} ${outPath}/cvi_wdr_bin
fi
if [ -f "${sdrBin}" ]; then
cp ${sdrBin} ${outPath}/cvi_sdr_bin
fi
fi
}
copyBinToOutFolder $1 $2