星期五, 二月 18, 2011

這是數學公式 你看到了嗎?
所用的工具式 http://www.codecogs.com/latex/eqneditor.php 的線上Latex 工具。
If you type <img src="http://latex.codecogs.com/gif.latex?\inline \int_1^2x^2=\frac{7}{3}" />, you will get 。My name is 楊宏章。
If you type <img src="http://latex.codecogs.com/gif.latex?\int_1^2x^2=\frac{7}{3}" />, you will get 。My name is 楊宏章




My First Web Page




+

星期六, 十一月 10, 2007

星期四, 十月 25, 2007

Handwriting Recognition

There is only one set of handwriting recognition engines on your system. However, there are several APIs to access a recognition engine.

The reasons for having different APIs are twofold:
(a) historic reasons - there is the 'classic' RecognizerContext-style API that been around since 2002 and the newer InkAnalyzer-style API that we introduced in 2006 which have additional capabilities - such as ink parsing prior to the actual recognition.
(b) developer convenience - we offer different API to best serve the developer's needs in their specific development environment. We have COM API for developers writing native code. We have managed APIs for Winforms developers (Microsoft.Ink.*) and managed APIs for WPF developers (System.Windows.Ink.*)

Here is the complete list of different API flavors with pointers to MSDN. All APIs are supported on both XP and Vista. Let me know if you have more questions about any of these.

1) RecognizerContext COM API
http://msdn2.microsoft.com/en-us/library/ms821570.aspx
2) RecognizerContext Winforms API
http://msdn2.microsoft.com/en-us/library/ms828542.aspx
3) InkAnalyzer COM API
http://msdn2.microsoft.com/en-us/library/ms697412.aspx
4) InkAnalyzer Winforms API
http://msdn2.microsoft.com/en-us/library/microsoft.ink.inkanalyzer.aspx
5) InkAnalyzer WPF API
http://msdn2.microsoft.com/en-us/library/system.windows.ink.inkanalyzer.aspx

Thanks,
Stefan Wick

swick@online.microsoft.com

On my XP os I can access Ink files and related attributes and classes. But when I want to recognize anything, I need to install the

Microsoft Windows XP Tablet PC Edition 2005 Recognizer Packand the Microsoft Windows XP Tablet PC Edition Software Development Kit 1.7


LanguageID

http://msdn2.microsoft.com/en-us/library/ms696357.aspx
Chinese (Traditional)&H0404(=1028)
English (US)&H0409(=1033)

http://msdn2.microsoft.com/en-us/library/aa480676.aspx
Creating an Ink-Aware Masked Numeric Input Component for Tablet PC

Saving-Rebuilding InkCanvas Strokes - The Code Project - Mobile PC ...

http://www.c-sharpcorner.com/UploadFile/mahesh/InkEdit11042005152237PM/InkEdit.aspx

Working with Tablet PC InkEdit Control in C#

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2072070&SiteID=1

Single Character recognition not working well with InkAnalysis

private string charStr = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
AnalysisHintNode ahn = _inkAnalyzer.CreateAnalysisHint();
ahn.Location.MakeInfinite();
ahn.Factoid = charStr;
ahn.CoerceToFactoid = true;
ahn.TopInkBreaksOnly = true;
// forces everything into one segment
ahn.WordMode = true;

//next line is necessary
_inkAnalyzer.SetStrokesType(Writing)

MSDN
MSDN HomeMSDN LibraryMSDN LearnMSDN DownloadsMSDN SupportMSDN Community
MSDN Library
Development Tools and LanguagesMobile and Embedded Development.NET DevelopmentOffice DevelopmentServers and Enterprise DevelopmentWeb DevelopmentWin32 and COM DevelopmentMSDN Library Archive
Win32 and COM Development
Administration and ManagementComponent DevelopmentData Access and StorageDevelopment GuidesDiagnosticsGraphics and MultimediaMessaging and CollaborationMobile PCNetworkingSecuritySystem ServicesToolsUser InterfaceWindows SearchWindows Driver KitWindows VersionsXMLTechnical Articles
Windows Versions
Windows Server 2003Windows XPWindows Media Center SDKWindows XP Tablet PC Edition 2005Windows 2000Windows 2000 ProfessionalWindows 2000 ServerWindows Development (General)
Windows XP Tablet PC Edition 2005
SDK DocumentationTechnical ArticlesColumnsTablet PC Downloads and Samples
Columns
Mobile Ink JotsTablet 101
Tablet 101
Tablet 101 Column 1: Getting StartedTablet 101 Column 2: Adding Context Awareness to Improve Handwriting RecognitionTablet 101 Column 3: Strokes and Recognition
Tablet 101 Column 3: Strokes and Re...

星期六, 十月 20, 2007

WPF


WPF Tutorial http://dotnetslackers.com/articles/silverlight/WPFTutorial.aspx
Nevertheless, the best way to learn XAML is to play with it yourself. For that, I would recommend XamlPad; a text editor that renders your XAML on the fly. It comes with the Microsoft Windows SDK.

WPF Data Binding Tutorial http://coredotnet.blogspot.com/2006/05/wpf-data-binding-tutorial.html

Building a WPF Sudoku Game, Part 1: Introduction to WPF and XAML
http://blogs.msdn.com/coding4fun/archive/2006/11/06/999502.aspx

Fun With Animation Part 1 - CompositionTarget.Rendering

星期五, 十月 19, 2007