Skip to content

Commit

Permalink
Remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Feb 25, 2024
1 parent 2290c58 commit bf1f5fe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pdq_hasher.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ func (p *PDQHasher) fillFloatLumaFromBufferImage(image *vips.ImageRef, luma *[]f
r := colorArray[0]
g := colorArray[1]
b := colorArray[2]
log.Println(r, g, b)
(*luma)[i*numCols+j] = LUMA_FROM_R_COEFF*float64(r) + LUMA_FROM_G_COEFF*float64(g) + LUMA_FROM_B_COEFF*float64(b)
}
}
Expand Down

0 comments on commit bf1f5fe

Please sign in to comment.