首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏未竟东方白

    【笔记】《Subpixel Photometric Stereo》的思路

    这段时间真的好忙,周更啊什么的都停滞了。前几天又看了一圈谭平的关于如何提高光度立体成像法线分辨率的这个论文,看完也写了长长的笔记。

    1.1K30发布于 2020-07-29
  • 来自专栏韩曙亮的移动开发专栏

    【Android UI】绘制圆角矩形进度条 ① ( 像素值转化 dp -> px | Paint 标志位设置 | Paint 画笔线帽样式设置 | Paint 画笔线段连接处样式设置 )

    * *

    {@link #SUBPIXEL_TEXT_FLAG} should be used in conjunction with this * flag */ public static final int LINEAR_TEXT_FLAG = 0x40; /** * Paint flag that enables subpixel * *

    Enabling this flag causes glyph advances to be computed with subpixel * accuracy

    * * @see #Paint(int) * @see #setFlags(int) */ public static final int SUBPIXEL_TEXT_FLAG public static final int DEV_KERN_TEXT_FLAG = 0x100; /** @hide bit mask for the flag enabling subpixel

    1.3K20编辑于 2023-03-30
  • 来自专栏DeveWork

    WebFont 三宗罪之二:吹毛求疵的WebFont 渲染差异

    语法 -webkit-font-smoothing: none | subpixel-antialiased | antialiased none:不平滑,字体具有锯齿锋利边缘,适用于小像素的文本。 subpixel-antialiased:使用亚像素平滑。 antialiased:使用灰阶平滑。 是不是看到上面的“亚像素”、“灰阶”头有大了呢? 下面同一行效果是等同的: -webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: subpixel-antialiased

    1.3K50发布于 2018-01-22
  • 来自专栏本立2道生

    亚像素数值极值检测算法总结

    本文尝试总结几种常用的一维离散数据极值检测方法,几个算法主要来自论文《A Comparison of Algorithms for Subpixel Peak Detection》,加上自己的理解和推导 参考 A Comparison of Algorithms for Subpixel Peak Detection Real-time numerical peak detector

    99320发布于 2018-09-04
  • 来自专栏前端开发随记

    CSS属性font-smoothing

    antialiased; -moz-osx-font-smoothing: grayscale; 对字体进行抗锯齿渲染使字体看起来更清晰 -webkit-font-smoothing: none | subpixel-antialiased

    53930编辑于 2022-12-15
  • 来自专栏微卡智享

    C++ OpenCV特征提取之亚像素级角点检测

    接下来就是我们最关键的函数SubPixel_Demo ? ? ? ---- 显示效果 ?

    2.5K40发布于 2019-07-24
  • 来自专栏HTML5学堂

    聊一聊“@font-face”

    其实这得益于液晶显示器(LCD)的普及,LCD 提供了更高的分辨率以及通过亚像素渲染(subpixel rending)的反锯齿(anti-aliasing)技术。 在 Mac OS X 平台上 subpixel rending 是默认开启的,但在 windows 平台上只有 windows vista 以及之后的版本才会默认开启。

    1.8K50发布于 2018-03-13
  • 来自专栏Android小知识

    Paint画笔常用的那些配置

    Paint.STRIKE_THRU_TEXT_FLAG 中划线 Paint.FAKE_BOLD_TEXT_FLAG 加粗 Paint.LINEAR_TEXT_FLAG 使文本平滑线性扩展的油漆标志 Paint.SUBPIXEL_TEXT_FLAG

    1.1K10发布于 2020-04-09
  • 来自专栏AI科技时讯

    OpenCV:特征及角点检测

    SubPixel精度的转角 有时候可能需要找到最精确的角点。OpenCV附带了一个函数cv2.cornerSubPix(),它进一步细化了以亚像素精度检测到的角点。下面是一个例子。 和之前一样,首先需要先找到哈里斯角点 然后通过这些角的质心(可能在一个角上有一堆像素,取它们的质心)来细化它们 Harris角用红色像素标记,SubPixel角用绿色像素标记 对于cv2.cornerSubPix res = np.int0(res) img[res[:,1],res[:,0]]=[0,0,255] img[res[:,3],res[:,2]] = [0,255,0] cv2.imshow('subpixel ', img) cv2.waitKey(0) cv2.destroyAllWindows() 以下是结果, 可以看到SubPixel更精确一点: 附加资源 https://docs.opencv.org

    99130编辑于 2023-09-01
  • 来自专栏Pulsar-V

    SIFT特征检测(一)

    . % % Parameters: % Arrays: % imsize = [rows columns] of image % keypoint = [subpixel_row subpixel_column are linked by the "next" field. */ typedef struct KeypointSt { float row, col; /* Subpixel Then each keypoint is specified by 4 floating point numbers giving subpixel row and column location

    2K50发布于 2018-04-18
  • 来自专栏图像处理与模式识别研究所

    角点精确检测

    ,markersize=5,label='subpixel') pylab.legend(prop={'size':20}) pylab.axis('off') pylab.subplot(212) pylab.imshow

    82020编辑于 2022-05-28
  • 来自专栏全栈程序员必看

    SIFT matlab源代码解析[通俗易懂]

    . % % Parameters: % Arrays: % imsize = [rows columns] of image % keypoint = [subpixel_row subpixel_column

    64620编辑于 2022-07-04
  • 来自专栏OpenCV 系列

    OpenCV 之 角点检测

    TermCriteria(TermCriteria::EPS + TermCriteria::COUNT, 40, 0.001); // 4) find corner positions in subpixel cornerSubPix(src_gray, corners, Size(5, 5), Size(-1, -1), criteria); // 5) output subpixel corners

    83850发布于 2021-03-18
  • 来自专栏猫头虎博客专区

    2021 最新 IntelliJ IDEA 详细配置步骤演示(图文版)

    Antialiasing(抗锯齿) IDE: 选择要应用于IDE的哪种抗锯齿模式(包括菜单,工具窗口等) Subpixel(子像素): 用于LCD显示器,并利用彩色LCD上的每个像素都由红色,绿色和蓝色子像素组成 Editor: 选择要应用于编辑器的抗锯齿模式: Subpixel(子像素): 用于LCD显示器,并利用彩色LCD上的每个像素都由红色,绿色和蓝色子像素组成 Greyscale(灰度): 建议此选项用于非

    3.7K10编辑于 2024-04-07
  • 来自专栏Coco的专栏

    疑难杂症:运用 transform 导致文本模糊的现象探究

    Serious bug: Slick Slider turns off subpixel font rendering on the entire site in Chrome #2275 如何解决?

    3.2K20编辑于 2022-03-10
  • 来自专栏CreateAMind

    基于视频的无监督segmentation论文推荐

    excellent reconstruction power by multigrid computing and filter flow model (powerful in capturing subpixel

    73430发布于 2019-05-13
  • 来自专栏coder修行路

    让你用sublime写出最完美的python代码--windows环境

    添加内容有: "font_face": "Ubuntu Mono", "font_size":14, "font_options": [ "directwrite", "subpixel_antialias " ], "font_options": [ "directwrite", "subpixel_antialias", "no_bold", "no_italic" ], "caret_style"

    4.4K70发布于 2018-03-30
  • 来自专栏Vison

    anchor free+分割

    多交叉点的ray取max distance点 subpixel的选近邻角度点 无交点的regression distance = 10^-6.

    86800发布于 2020-05-05
  • 来自专栏walterlv - 吕毅的博客

    ClearType 的原理:Windows 上文本的亚像素控制

    本文会经常更新,请阅读原文: https://blog.walterlv.com/post/the-subpixel-rendering-of-text.html ,以避免陈旧错误知识的误导,同时有更好的阅读体验

    1.7K30编辑于 2023-10-22
  • 来自专栏GEE数据专栏,GEE学习专栏,GEE错误集等专栏

    GEE数据集——数字地球澳大利亚海岸线(更新)

    Samapriya Roy Keywords : Sea, ocean and coast, marine and coastal, coast, erosion, waterline extraction, subpixel

    32910编辑于 2024-02-29
领券