<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Coder_LCB的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/Coder_LCB</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; Coder_LCB]]></copyright><item><title><![CDATA[电路分析-基本定律（基尔霍夫电流/电压定律）]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/140206731</link><guid>https://blog.csdn.net/Coder_LCB/article/details/140206731</guid><author>Coder_LCB</author><pubDate>Fri, 05 Jul 2024 13:56:19 +0800</pubDate><description><![CDATA[如下图中的，流入中心节点的电流分支为I3,I4及I5,流出该节点的电流分别为I1和I2，所以有，]]></description><category></category></item><item><title><![CDATA[基础元器件-三极管基本常识]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/140205790</link><guid>https://blog.csdn.net/Coder_LCB/article/details/140205790</guid><author>Coder_LCB</author><pubDate>Fri, 05 Jul 2024 13:09:32 +0800</pubDate><description><![CDATA[2.三极管是怎么工作的。3.三极管的基本功能。]]></description><category></category></item><item><title><![CDATA[影像组学特征值自动提取及统计软件需求分析]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/120988741</link><guid>https://blog.csdn.net/Coder_LCB/article/details/120988741</guid><author>Coder_LCB</author><pubDate>Wed, 27 Oct 2021 10:59:11 +0800</pubDate><description><![CDATA[Hi There,

  由于接收到很多朋友的私信，基本都是需要提取特征值并统计。

  因为有这个需求，计划开发这样一个软件，如果可能，请大家留下自己的具体期望：需要什么样的功能？谢谢。
...]]></description><category></category></item><item><title><![CDATA[医学影像组学数据特征值介绍]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90712671</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90712671</guid><author>Coder_LCB</author><pubDate>Fri, 31 May 2019 11:19:49 +0800</pubDate><description><![CDATA[在和临床一线医生合作中，遇到的最大问题就是：

1.影像组学中的特征值是什么含义？

2.如何对应到临床信息，这个课题应该计算哪些特征值？

3.如何验证这些特征值是正确的？

最新的pyradiomics可以计算的特征值包括以下几类：

Radiomic Features

This section contains the definitions of the various features...]]></description><category></category></item><item><title><![CDATA[Python自定义类中内部函数：__repr__()和__string__()的应用]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90711902</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90711902</guid><author>Coder_LCB</author><pubDate>Fri, 31 May 2019 10:49:58 +0800</pubDate><description><![CDATA[我们在定义Python类时，经常会看到比较好的代码中，都有__repr__和__string__,两个内部函数的定义。但是我一直很少关注它们的区别和具体应用场景。稍微做个小结。

1.__foo()__在python中表示__foo__是一个私有private 函数，在CookBook pp254中，解释为，该函数不会被子类的相同名称的函数重载。一般地说，类中以“下划线”开头定义的变量或者函数都是...]]></description><category></category></item><item><title><![CDATA[Python设计模式4--原型模式]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90446491</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90446491</guid><author>Coder_LCB</author><pubDate>Wed, 22 May 2019 16:30:05 +0800</pubDate><description><![CDATA[原型模式，也是用于创建对象时的一种设计方法。

主要应用场景是：每次初始化某个对象时，需要传递大量的参数，很不方便，此时，可以使用原型模式，在已经创建并初始化的对象基础上，可以快速而又方便创建新的不同对象。

主要原理：使用深拷贝，复制一个已创建的对象，然后使用__dict__.update（）方法更新已创建对象中的参数值方式创建新对象。

背景知识：在python中的类中，__dict__是一个...]]></description><category></category></item><item><title><![CDATA[Python设计模式3--建造者模式]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90440957</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90440957</guid><author>Coder_LCB</author><pubDate>Wed, 22 May 2019 11:50:48 +0800</pubDate><description><![CDATA[建造者模式，也是一种创建新对象的设计方法，和C++中的虚函数很类似，但是用到了python自身的虚基类ABCMeta。

1.应用场景:

  某个类中的函数较多，且实现比较复杂，很多时候需要继承的子类重载或者重新定义逻辑；

2.背景基础：

  由于用到python中虚函数，需要了解abc模块中的ABCMeta和python中类创建对象时的__metaclass__属性含义。

一般...]]></description><category></category></item><item><title><![CDATA[医学影像组学特征值（Radiomics Features）提取]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90440450</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90440450</guid><author>Coder_LCB</author><pubDate>Wed, 22 May 2019 11:29:34 +0800</pubDate><description><![CDATA[在AI+医学影像方向工作近三年，主要负责医学标注工具和影像组学（Radiomics）特征值提取软件的实现。

基于这些工具软件发表了5篇高分（IF&gt;5）文章,下面逐一做个总结和整合，以更好地开展工作。

1.医学标注工具软件

 3D Slicer是一款非常成熟的医学影像处理平台软件，它集成了非常多实用的工具，我们一般使用segmentation editor做为添加ROI的方法，并将该...]]></description><category></category></item><item><title><![CDATA[Python设计模式2--工厂模式]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90438407</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90438407</guid><author>Coder_LCB</author><pubDate>Wed, 22 May 2019 10:11:30 +0800</pubDate><description><![CDATA[工厂模式，类似实际的制造车间中，根据订单的需求来生成/创建某个实例。

1.应用场景：需要创建的实例不确定，由输入的数据决定；

2.实现方法：实现一个独立的类，接收传入的需要创建实例的名称，在该类中实现创建某个具体实例。

3.代码：


#coding:utf-8


class Person(object):
    def __init__(self):
        self.name...]]></description><category></category></item><item><title><![CDATA[Python设计模式1--单例模式]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/90437860</link><guid>https://blog.csdn.net/Coder_LCB/article/details/90437860</guid><author>Coder_LCB</author><pubDate>Wed, 22 May 2019 09:56:09 +0800</pubDate><description><![CDATA[设计模式的重要性，不再赘述，分方法和类型逐一记录，以备忘。

一、单例模式

单例模式，顾名思义，python中的某个类有且仅有一个对象（实例）；

1.应用场景：某个实例必须保证全局唯一性，如读取某些配置文件的实例，需要确保在任意地方都是相同配置值；

2.实现方法：使用python中的基类object中__new__();

3.代码：


class singleton(object):
...]]></description><category></category></item><item><title><![CDATA[MFC_CImageList control]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/71107414</link><guid>https://blog.csdn.net/Coder_LCB/article/details/71107414</guid><author>Coder_LCB</author><pubDate>Wed, 03 May 2017 10:13:31 +0800</pubDate><description><![CDATA[Using CImageList

Visual Studio 2015




Other Versions








 

For the latest documentation on Visual Studio 2017, see Visual Studio 2017 Documentation.

An image list, represe]]></description><category></category></item><item><title><![CDATA[Export from a DLL Using __declspec(dllexport)]]></title><link>https://blog.csdn.net/Coder_LCB/article/details/70332751</link><guid>https://blog.csdn.net/Coder_LCB/article/details/70332751</guid><author>Coder_LCB</author><pubDate>Fri, 21 Apr 2017 17:44:37 +0800</pubDate><description><![CDATA[You can export data, functions, classes, or class member functions from a DLL by using the __declspec(dllexport) keyword. If you use __declspec(dllexport), you do not need a .DEF file for exports.

]]></description><category></category></item></channel></rss>