Il y a un truc que je ne comprends pas...
Quand je regarde dans le fichier ansel/.gitmodule :
[submodule "src/external/rawspeed"]
path = src/external/rawspeed
url = https:
branch = stable
c'est bien la branche "stable" du projet rawspeed qui est utilisée.
Or cette branche supporte le Fuji X100VI : voir https://github.com/darktable-org/rawspeed/blob/stable/data/cameras.xml#L15735
<Camera make="FUJIFILM" model="X100VI">
<ID make="Fujifilm" model="X100VI">Fujifilm X100VI</ID>
<CFA2 width="6" height="6">
<ColorRow y="0">GGRGGB</ColorRow>
<ColorRow y="1">GGBGGR</ColorRow>
<ColorRow y="2">BRGRBG</ColorRow>
<ColorRow y="3">GGBGGR</ColorRow>
<ColorRow y="4">GGRGGB</ColorRow>
<ColorRow y="5">RBGBRG</ColorRow>
</CFA2>
<Sensor black="1023" white="16383"/>
<ColorMatrices>
<ColorMatrix planes="3">
<ColorMatrixRow plane="0">11809 -5358 -1141</ColorMatrixRow>
<ColorMatrixRow plane="1">-4248 12164 2343</ColorMatrixRow>
<ColorMatrixRow plane="2">-514 1097 5848</ColorMatrixRow>
</ColorMatrix>
</ColorMatrices>
</Camera>
<Camera make="FUJIFILM" model="X100VI" mode="compressed">
<ID make="Fujifilm" model="X100VI">Fujifilm X100VI</ID>
<CFA2 width="6" height="6">
<ColorRow y="0">GGRGGB</ColorRow>
<ColorRow y="1">GGBGGR</ColorRow>
<ColorRow y="2">BRGRBG</ColorRow>
<ColorRow y="3">GGBGGR</ColorRow>
<ColorRow y="4">GGRGGB</ColorRow>
<ColorRow y="5">RBGBRG</ColorRow>
</CFA2>
<Sensor black="1023" white="16383"/>
<ColorMatrices>
<ColorMatrix planes="3">
<ColorMatrixRow plane="0">11809 -5358 -1141</ColorMatrixRow>
<ColorMatrixRow plane="1">-4248 12164 2343</ColorMatrixRow>
<ColorMatrixRow plane="2">-514 1097 5848</ColorMatrixRow>
</ColorMatrix>
</ColorMatrices>
</Camera>
Une fois les commandes git submodule init et git submodule update exécutées, nous devrions donc retrouver ces informations dans le fichier ansel/src/external/rawspeed/data/cameras.xml.
Or il n'en est rien !
$ grep X100VI ansel/src/external/rawspeed/data/cameras.xml
$
La commande ne retourne rien car ne trouve pas l'occurence "X100VI" dans le fichier cameras.xml.
J'ai loupé un truc ? Ce n'est pas la branche "stable" de rawspeed qui a été récupérée ?
Il y a un truc que je ne comprends pas...
Quand je regarde dans le fichier ansel/.gitmodule :
[submodule "src/external/rawspeed"] path = src/external/rawspeed url = https://github.com/darktable-org/rawspeed.git branch = stable
c'est bien la branche "stable" du projet rawspeed qui est utilisée.
Or cette branche supporte le Fuji X100VI : voir https://github.com/darktable-org/rawspeed/blob/stable/data/cameras.xml#L15735
<Camera make="FUJIFILM" model="X100VI"> <ID make="Fujifilm" model="X100VI">Fujifilm X100VI</ID> <CFA2 width="6" height="6"> <ColorRow y="0">GGRGGB</ColorRow> <ColorRow y="1">GGBGGR</ColorRow> <ColorRow y="2">BRGRBG</ColorRow> <ColorRow y="3">GGBGGR</ColorRow> <ColorRow y="4">GGRGGB</ColorRow> <ColorRow y="5">RBGBRG</ColorRow> </CFA2> <Sensor black="1023" white="16383"/> <ColorMatrices> <ColorMatrix planes="3"> <ColorMatrixRow plane="0">11809 -5358 -1141</ColorMatrixRow> <ColorMatrixRow plane="1">-4248 12164 2343</ColorMatrixRow> <ColorMatrixRow plane="2">-514 1097 5848</ColorMatrixRow> </ColorMatrix> </ColorMatrices> </Camera> <Camera make="FUJIFILM" model="X100VI" mode="compressed"> <ID make="Fujifilm" model="X100VI">Fujifilm X100VI</ID> <CFA2 width="6" height="6"> <ColorRow y="0">GGRGGB</ColorRow> <ColorRow y="1">GGBGGR</ColorRow> <ColorRow y="2">BRGRBG</ColorRow> <ColorRow y="3">GGBGGR</ColorRow> <ColorRow y="4">GGRGGB</ColorRow> <ColorRow y="5">RBGBRG</ColorRow> </CFA2> <Sensor black="1023" white="16383"/> <ColorMatrices> <ColorMatrix planes="3"> <ColorMatrixRow plane="0">11809 -5358 -1141</ColorMatrixRow> <ColorMatrixRow plane="1">-4248 12164 2343</ColorMatrixRow> <ColorMatrixRow plane="2">-514 1097 5848</ColorMatrixRow> </ColorMatrix> </ColorMatrices> </Camera>
Une fois les commandes git submodule init et git submodule update exécutées, nous devrions donc retrouver ces informations dans le fichier ansel/src/external/rawspeed/data/cameras.xml.
Or il n'en est rien !
La commande ne retourne rien car ne trouve pas l'occurence "X100VI" dans le fichier cameras.xml.
J'ai loupé un truc ? Ce n'est pas la branche "stable" de rawspeed qui a été récupérée ?