Procedure: Fusion Schema using NSCT |
Input X, Y are two CXR input image(s) and VGGNet is the pretrained VGG-16 network. |
Output Z is the fuzed CXR image |
Begin |
Xa, Xb decomposeByNSCT (X) |
Ya, Yb decomposeByNSCT (Y) |
Za DeepLearningFusionRule (Xa, Ya, VGGNet) |
Zb DeepLearningFusionRule (Xb, Yb, VGGNet) |
Z recomposeByNSCT(Za,Zb) |
saveImageFile(Z) |
[ ] evalautionMetrics(X, Y, Z) |
Print([ ]) |
End |
Procedure Deep Learning Fusion Rule |
Input A, B are two subband of CXR input image(s) and VGGNet is the pretrained VGG-16 network. |
Output C is the fuzed subband of CXR image |
Begin |
extractFeatures(VGGNet, A) |
|
|
For each in B subband CXR images |
extractFeatures(VGGNet, ) |
|
|
End |
|
For each in B subband CXR images |
|
|
|
End |
For each in B subband CXR images |
|
End |
|
For each in W |
|
End |
End |