Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ycbcr (0.39 sec)

  1. src/image/jpeg/reader_test.go

    		if m0.Bounds() != image.Rect(0, 0, 150, 103) {
    			t.Errorf("%s: bad bounds: %v", tc, m0.Bounds())
    			continue
    		}
    
    		switch m0 := m0.(type) {
    		case *image.YCbCr:
    			m1 := m1.(*image.YCbCr)
    			if err := check(m0.Bounds(), m0.Y, m1.Y, m0.YStride, m1.YStride); err != nil {
    				t.Errorf("%s (Y): %v", tc, err)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. src/image/jpeg/scan.go

    		subsampleRatio = image.YCbCrSubsampleRatio410
    	default:
    		panic("unreachable")
    	}
    	m := image.NewYCbCr(image.Rect(0, 0, 8*h0*mxx, 8*v0*myy), subsampleRatio)
    	d.img3 = m.SubImage(image.Rect(0, 0, d.width, d.height)).(*image.YCbCr)
    
    	if d.nComp == 4 {
    		h3, v3 := d.comp[3].h, d.comp[3].v
    		d.blackPix = make([]byte, 8*h3*mxx*8*v3*myy)
    		d.blackStride = 8 * h3 * mxx
    	}
    }
    
    // Specified in section B.2.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/image/draw/draw.go

    					}
    					return
    				case *image.RGBA:
    					drawCopyOver(dst0, r, src0, sp)
    					return
    				case *image.NRGBA:
    					drawNRGBAOver(dst0, r, src0, sp)
    					return
    				case *image.YCbCr:
    					// An image.YCbCr is always fully opaque, and so if the
    					// mask is nil (i.e. fully opaque) then the op is
    					// effectively always Src. Similarly for image.Gray and
    					// image.CMYK.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Uniform).RGBA64At", Method, 17},
    		{"(*YCbCr).At", Method, 0},
    		{"(*YCbCr).Bounds", Method, 0},
    		{"(*YCbCr).COffset", Method, 0},
    		{"(*YCbCr).ColorModel", Method, 0},
    		{"(*YCbCr).Opaque", Method, 0},
    		{"(*YCbCr).RGBA64At", Method, 17},
    		{"(*YCbCr).SubImage", Method, 0},
    		{"(*YCbCr).YCbCrAt", Method, 4},
    		{"(*YCbCr).YOffset", Method, 0},
    		{"(Point).Add", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top