libcamera: Drop file name from header comment blocks
Source files in libcamera start by a comment block header, which includes the file name and a one-line description of the file contents. While the latter is useful to get a quick overview of the file contents at a glance, the former is mostly a source of inconvenience. The name in the comments can easily get out of sync with the file name when files are renamed, and copy & paste during development have often lead to incorrect names being used to start with. Readers of the source code are expected to know which file they're looking it. Drop the file name from the header comment block. The change was generated with the following script: ---------------------------------------- dirs="include/libcamera src test utils" declare -rA patterns=( ['c']=' \* ' ['cpp']=' \* ' ['h']=' \* ' ['py']='# ' ['sh']='# ' ) for ext in ${!patterns[@]} ; do files=$(for dir in $dirs ; do find $dir -name "*.${ext}" ; done) pattern=${patterns[${ext}]} for file in $files ; do name=$(basename ${file}) sed -i "s/^\(${pattern}\)${name} - /\1/" "$file" done done ---------------------------------------- This misses several files that are out of sync with the comment block header. Those will be addressed separately and manually. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
This commit is contained in:
parent
fdcd5d04ec
commit
626172a16b
522 changed files with 522 additions and 522 deletions
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Copyright (C) 2022, Raspberry Pi (Trading) Limited
|
||||
#
|
||||
# alsc_only.py - alsc tuning tool
|
||||
# alsc tuning tool
|
||||
|
||||
from ctt import *
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# colors.py - Program to convert from RGB to LAB color space
|
||||
# Program to convert from RGB to LAB color space
|
||||
def RGB_to_LAB(RGB): # where RGB is a 1x3 array. e.g RGB = [100, 255, 230]
|
||||
num = 0
|
||||
XYZ = [0, 0, 0]
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt.py - camera tuning tool
|
||||
# camera tuning tool
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_alsc.py - camera tuning tool for ALSC (auto lens shading correction)
|
||||
# camera tuning tool for ALSC (auto lens shading correction)
|
||||
|
||||
from ctt_image_load import *
|
||||
import matplotlib.pyplot as plt
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_awb.py - camera tuning tool for AWB
|
||||
# camera tuning tool for AWB
|
||||
|
||||
from ctt_image_load import *
|
||||
import matplotlib.pyplot as plt
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_ccm.py - camera tuning tool for CCM (colour correction matrix)
|
||||
# camera tuning tool for CCM (colour correction matrix)
|
||||
|
||||
from ctt_image_load import *
|
||||
from ctt_awb import get_alsc_patches
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_geq.py - camera tuning tool for GEQ (green equalisation)
|
||||
# camera tuning tool for GEQ (green equalisation)
|
||||
|
||||
from ctt_tools import *
|
||||
import matplotlib.pyplot as plt
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019-2020, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_image_load.py - camera tuning tool image loading
|
||||
# camera tuning tool image loading
|
||||
|
||||
from ctt_tools import *
|
||||
from ctt_macbeth_locator import *
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_lux.py - camera tuning tool for lux level
|
||||
# camera tuning tool for lux level
|
||||
|
||||
from ctt_tools import *
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_macbeth_locator.py - camera tuning tool Macbeth chart locator
|
||||
# camera tuning tool Macbeth chart locator
|
||||
|
||||
from ctt_ransac import *
|
||||
from ctt_tools import *
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_noise.py - camera tuning tool noise calibration
|
||||
# camera tuning tool noise calibration
|
||||
|
||||
from ctt_image_load import *
|
||||
import matplotlib.pyplot as plt
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_ransac.py - camera tuning tool RANSAC selector for Macbeth chart locator
|
||||
# camera tuning tool RANSAC selector for Macbeth chart locator
|
||||
|
||||
import numpy as np
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Copyright (C) 2019, Raspberry Pi Ltd
|
||||
#
|
||||
# ctt_tools.py - camera tuning tool miscellaneous
|
||||
# camera tuning tool miscellaneous
|
||||
|
||||
import time
|
||||
import re
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue