Git Product home page Git Product logo

Comments (4)

MC1016 avatar MC1016 commented on May 24, 2024

The problem may be in the PC component; the 4th element of the PC is all zero, but I don't know why.

from image-similarity-measures.

seedlit avatar seedlit commented on May 24, 2024

@MC1016 thanks for reporting.
Can you share minimalist code to reproduce the issue?

from image-similarity-measures.

MC1016 avatar MC1016 commented on May 24, 2024

@MC1016 thanks for reporting. Can you share minimalist code to reproduce the issue?
Yes can u try this thanks
from image_similarity_measures.quality_metrics import fsim
def mfsim(y, out):
gts = y
imgs = out
big_res = []

for gt, img in zip(gts, imgs):
    assert gt.shape == img.shape
    res = []
    for ii in range(gt.shape[0]):
        gt_band = gt[ii, :, :][np.newaxis, :, :] * 255
        img_band = img[ii, :, :][np.newaxis, :, :] * 255
        gt_band = np.transpose(gt_band, (1,2,0))
        img_band = np.transpose(img_band, (1,2,0))
        # NOTE: FSIM expects dynamic range [0, 255]
        res.append(fsim(gt_band, img_band))
    big_res.append(np.mean(res))
return np.mean(big_res)

if name == 'main':
ref = np.random.rand(1,1, 3, 3)
tar = np.random.rand(1,1, 3, 3)

print(mfsim1(ref,tar))

from image-similarity-measures.

MC1016 avatar MC1016 commented on May 24, 2024

data structure [batch,channel,x,y]

from image-similarity-measures.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.