Welcome Guest, you are in: Login

MUST Creative Engineering Laboratory

RSS RSS

Navigation



Technical Doc



Search the wiki
»

MUST Corp.

MUST Corp.

www.must.or.kr

 Microsoft CERTIFIED Partner Software Development, Web Development, Data Platform

 Microsoft Small Business Specialist

MCSD

Microsoft Certified IT Professional

Microsoft Certified Professional Developer

Search Engine

Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.



Filter by Category

































This search, performed through 582.69 KB (179 documents, 6974 words), completed in 0.0 seconds and yielded 30 results.

TourMap.CreateBoard — 27.7%

Example <%=TourMap.CreateBoard(new TourMapBoardParameters { BoardId = new Guid("1D84F8EC-736D-4AF9-95B0-2DEB2E1B098F"), ShowDivisionList = true, ShowListMap = true, DivisionList = new[] { new DivisionInfo { Id = new Guid("FC6FACAF-C4C8-4221-8B1F-15F308133C04"), Name = "문경읍", Latitude = 36.737270000059745m, Longitude = 128.10716024105415m, Level = 7 }, new DivisionInfo [...]

MainPage Map and Photo show — 15.0%

[...] Class: Subclasses: Extends: Example private static Dictionary<Guid, Guid> boardToPage = new Dictionary<Guid, Guid>{ //first - board ID, second - page ID of menu.xml { new Guid("1D84F8EC-736D-4AF9-95B0-2DEB2E1B098F"), new Guid("82331DB9-BC7A-440E-B62B-7BCD4B96FDA6") }, //팔경 { new Guid("3D16B022-DF1F-4A58-9249-B4249494245D"), new Guid("A2506FCD-CC29-4B0E-BDA7-179DDDE80894") }, //온천 { new [...]

TourMap.CreateBoard at CITY — 9.5%

[...] BoardID //DivisionId : 문화관광사이트 문화재자료 default.aspx내에 정의된 읍면 아이디 --> <%=TourMap.CreateBoard(new TourMapBoardParameters { BoardId = new Guid("A41C38A7-C7B4-422A-A15A-C3B5E23D4010"), ShowListMap = false, DivisionId = new Guid("FC6FACAF-C4C8-4221-8B1F-15F308133C04") })%> </asp:Content> <asp:Content ContentPlaceHolderId="scripts" runat="server"> <%:TourMap.CreateBoardJS()%> </asp:Content> default.ascx example <%=TourMap.CreateBoard(

μSearch Search help — 8.2%

[...] all the words you put in the query will be used. Search is always case insensitive. A search for [ new york times ] is the same as a search for [ New York Times ]. Generally, punctuation is ignored, including @#$%^&*()=+[]\ and other special characters. Tips for better searches Keep it simple. If you're looking for a particular company, just enter its name, or as much of its name as you can recall. If you're looking for [...]

Html.Table — 7.3%

[...] understand <thead>, etc. Public Methods <%=Html.Table( "SUMMARY", "CAPTION", new[] { "TH", "TH", "TH", "TH", "TH" }, new[] { new[] { "TD", "TD", "TD", "TD", "TD" }, new[] { "TD", "TD", "TD", "TD", "TD" } }) %> Example <%=Html.Table( "2010 정보화교육 일정에 대한 표입니다.", "2010 정보화교육 일정에 대한 표", new[] { "교육일시", "교육대상(지역, 직장)", [...]

Image Restoration and Reconstruction — 6.8%

[...] Bitmap Process(Bitmap input) { if (input.PixelFormat != PixelFormat.Format8bppIndexed) throw new NotSupportedException(); Bitmap output = (Bitmap)input.Clone(); int rm = M / 2; int rn = N / 2; int width = output.Width; int height = output.Height; int mn = M * N; BitmapData inputData = input.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed); BitmapData outputData = output.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, [...]

Sobel operator — 4.1%

[...] { Bitmap b, b1; public Image apply(Image im) { int [,] gx = new int [,] { { -1, 0, 1 }, { -2, 0, 2 }, { -1, 0, 1 } }; // The matrix Gx int [,] gy = new int [,] { { 1, 2, 1 }, { 0, 0, 0 }, { -1, -2, -1 } }; // The matrix Gy b = (Bitmap)im; Bitmap b1 = new Bitmap(im); for ( int i = 1; i // loop for the image pixels height { for ( int j = 1; j // loop for [...]

[ASP.NET] 서명(signature) 생성 샘플코드 — 2.7%

[...] runat="server"> string CalculateSign(string text, string key) { byte[] keyBytes = new byte[key.Length / 2]; for (int i = 0; i < keyBytes.Length; i++) keyBytes[i] = Convert.ToByte(key.Substring(i * 2, 2), 16); byte[] textBytes = Encoding.ASCII.GetBytes(text); byte[] sign; using (HMACSHA256 hmac = new HMACSHA256(keyBytes)) sign = hmac.ComputeHash(textBytes); return string.Join(string.Empty, sign.Select(b => b.ToString("x2"))); } </script> 예제2 현재 날짜 [...]

Menu Control — 1.8%

[...] display-side="never" sid="common"> <menu name="① 신재생에너지전시관" id="2985FD54-62E1-48F0-B864-1B37815D8409" url="new.renewable.energy" /> <menu name="② 정보검색관" id="E9A19FBE-E5FE-4AA8-B094-49517AEFA903" url="information.retrieval" /> <menu name="③ 영상관" id="4E3914C1-F240-4EE2-AE3A-3B49C8EDCD22" url="image.tube" /> <menu name="④ 안내홀" id="6FD96176-453F-457D-B2B6-8793E1CA22A8" url="information.hall" /> <menu name="⑤ 살아있는생물체험관/특별전시실" id="040638CB-8A2E-4B5E-9198-4C6217656219" url="biologica.special.exhibition" /> <menu name="생태공작실" [...]

RAW file and BMP file — 1.8%

[...] 입력 RGBQUAD hRGB[256]; fread(hRGB, sizeof(RGBQUAD), 256, infile); // 메모리 할당 BYTE *lpImg = new BYTE[hInfo.biSizeImg]; fread(lpImg, sizeof(char), hInfo.biSizeImage, infile); fclose(infile); int rwsize = WIDTHBYTES(hInfo.bitBitCount*hInfo.biWidth); // 역상 이미지 구하기 for (int i=0; i<hInfo.biHeight; i++) { for (int j=0; j<hInfo.biWidth; j++) lpImg[i*rwsize+j] = 255- lpImg[i*rwsize+j]; } // 영상 출력 파일 오픈 FILE *outfile = fopen(“out.bmp", “wb"); // 파일 헤드 출력 fwrite(&hf, sizeof(BITMAPFILEHEADER), [...]

MUST Ucc new version flowchart — 1.4%

MUST Ucc new version support mobile device

Html.RenderControl — 1.4%

[...] <ul> <li>test</li> <li>test2</li> </ul> test2.ascx <div>new test</div> <script runat="server"> dynamic weather; void Init() { ......content .... } </script> default.aspx와 common.ascx가 다른 폴더에 있을때 Default.aspx <%@ Page Inherits="SubPage" %> <asp:Content ContentPlaceHolderID="contentMain" runat="server"> <%:Html.RenderControl("common.ascx", searchParent: true)%> </asp:Content> 다른폴더에 있는 common.ascx <%@Import Namespace="kr.or.must.mwsf" [...]

Datamatrix (2D-Barcode) — 1.4%

[...] version is known as ECC 000 to ECC 140 and should be considered obsolete and should not be used in new applications. The newer error correction schema (with Reed-Solomon codes) is known as ECC 200 schema and is the current and recommended schema. By default the library will use the newer schema but support also exists for legacy applications to use the older ECC schema. The image shows an annotated Datamatrix where the finder and synchronization patterns have been highlighted. Even though it is primarily designed to handle the the Western alphabet (ISO-8859/x code [...]

SQL Server 2008 Full-Text Search — 1.4%

[...] 10 Understanding the Filter Daemon Process 10 SQL Server 2008 Full-Text Search Improvements. 12 New Functionality. 12 Introducing Stoplists 12 Thesaurus Improvements 14 Maintaining Thesaurus Content 14 Thesaurus Algorithm Characteristics 15 New Tools for Troubleshooting SQL Server 2008 Full-Text Search. 17 Access to the Full-Text Index [...]

QR Code — 0.9%

[...] recently, the inclusion of QR Code reading software on camera phones in Japan has led to a wide variety of new, consumer-oriented applications, aimed at relieving the user of the tedious task of entering data into their mobile phone. QR Codes storing addresses and URLs are becoming increasingly common in magazines and advertisements in Japan. The addition of QR Codes on business cards is also becoming common, greatly simplifying the task of entering the personal details of a new [...]

windows port service — 0.9%

[...] broadcasts uucp 540/tcp uucpd klogin 543/tcp #Kerberos login kshell 544/tcp krcmd #Kerberos remote shell new-rwho 550/udp new-who [...]

6 methods to control what and how your content appears in search engines — 0.9%

[...] Bing offers a thumbnail preview of most search results, what Bing calls Document Preview . This isn’t new, Live Search offered a preview of the first six search results in some geographies. Ask.com also offers a similar feature called binoculars . Bing’s preview can be disabled by specifying nopreview as a meta robots value for a page. Microsoft also notes support for x-robots-tag: nopreview in http headers, the first time I’ve noted Microsoft mentioning support for the x-robots-tag . Microsoft previously supported different methods to disable the thumbnail [...]

Main menu change from image to Text — 0.5%

[...] <%=Html.CreateMainMenu() %> Text menu <%:Html.CreateMainMenu((index, current, title) => new HtmlString("<b>" + HttpUtility.HtmlEncode(title) [...]

Convert Resolution Setting — 0.5%

[...] stream in .m3u8 you need to delete 2 lines for each stream if you changed smooth.streaming.xml, new video is no need to change .ism, .m3u8 file [...]

Main Page — 0.5%

[...] 2010.8.3 Web pages print research] - 2010.7.9 MUST Website Mobile Converter] - 2010.7.5 MUST's New search engine 뮤서치 μSearch v1.0 - 2010.6.27 [...]

MSSQL 2005, 2008 에서 로그파일(LDF) 파일 없이 MDF 파일 복원하기 — 0.5%

1. Detach database and move your mdf to save location. 2. Create new databse of same name, same files, same file [...]

What is WURFL? — 0.5%

[...] information is contributed by developers around the world and the WURFL is updated frequently reflecting new wireless devices coming on the market. Luca [...]

Understanding user-agent strings — 0.5%

[...] string. Additional tokens can be added to the user-agent string by using the Registry Editor to create new string values under the Pre-Platform key or [...]

Image Retrieval Based on Shape — 0.5%

[...] capture the content of the audio/visual information and (iv) they are time consuming. As the result, a new world standard MPEG-7, known as “Multimedia [...]

Fuzzy set approaches — 0.5%

[...] is mapped into the discrete categories {low, medium, high} with fuzzy values calculated For a given new sample, more than one fuzzy value may apply [...]

hasLayout — 0.5%

[...] and -y are not widely implemented yet. They did not trigger hasLayout in prior versions of IE. And new hasLayout actors appeared on the screen in [...]

SVM – Support Vector Machines — 0.5%

[...] of as doing dot product in some high dimensional space Example of Non-linear SVM SVM Relatively new concept Nice Generalization properties Hard [...]

What is μSearch? — 0.5%

μSearch μSearch is MUST's new search engine. Information Retrieval [...]

Html.Link — 0.5%

[...] GUID",Html.Image("finename.png","ATL Title"))%> link with accesskey <%=Html.Link("GUID or SID", "Description", new { accesskey = "0" })%>

Fourier transform — 0.5%

[...] domain of the original function is typically time and is accordingly called the time domain. That of the new function is frequency, and so the Fourier [...]


MUST Creative Engineering Laboratory

ImageImage Image Image

Image Image Image Image Image Image Image

Copyright © 2010 MUST Corp. All rights reserved. must@must.or.kr
This Program is released under the GNU General Public License v2. View the GNU General Public License v2 or visit the GNU website.